Changes between Version 98 and Version 99 of RemovingTheMagic
- Timestamp:
- Apr 10, 2006, 8:10:38 PM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
RemovingTheMagic
v98 v99 462 462 || ("values" lookup, etc., not previously possible) || {{{reporter_obj.article_set.values()}}} || 463 463 || '''Many-to-many related lookup''' || || 464 || {{{article_obj.get_site s_list()}}} || {{{article_obj.sites.all()}}} ||464 || {{{article_obj.get_site_list()}}} || {{{article_obj.sites.all()}}} || 465 465 || {{{article_obj.set_sites([s1.id, s2.id])}}} || {{{article_obj.sites.clear(); article_obj.sites.add(s1); article_obj.sites.add(s2)}}} || 466 466 || {{{article_obj.set_sites([s1.id]) # deletion}}} || {{{article_obj.sites.remove(s2)}}} || … … 709 709 #!python 710 710 from django.forms import FormWrapper 711 711 712 from PROJECT.APP.models import MODELNAME 712 713 ...