Changes between Version 97 and Version 98 of RemovingTheMagic


Ignore:
Timestamp:
Apr 10, 2006, 2:50:34 AM (18 years ago)
Author:
gaël
Comment:

typo

Legend:

Unmodified
Added
Removed
Modified
  • RemovingTheMagic

    v97 v98  
    462462|| ("values" lookup, etc., not previously possible)        || {{{reporter_obj.article_set.values()}}} ||
    463463|| '''Many-to-many related lookup'''                       ||                         ||
    464 || {{{article_obj.get_site_list()}}}                             || {{{article_obj.sites.all()}}} ||
     464|| {{{article_obj.get_sites_list()}}}                            || {{{article_obj.sites.all()}}} ||
    465465|| {{{article_obj.set_sites([s1.id, s2.id])}}}                   || {{{article_obj.sites.clear(); article_obj.sites.add(s1); article_obj.sites.add(s2)}}} ||
    466466|| {{{article_obj.set_sites([s1.id]) # deletion}}}               || {{{article_obj.sites.remove(s2)}}} ||
Back to Top