Changes between Initial Version and Version 1 of Ticket #452


Ignore:
Timestamp:
Sep 2, 2005, 1:19:34 PM (19 years ago)
Author:
Adrian Holovaty
Comment:

Cleaned up formatting in description.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #452 – Description

    initial v1  
    11I create two m2mfields which reference to the same class, such as this:
    22
     3{{{
    34class Name(Model):
    45    name = CharField (maxlength=50)
     
    1213    def __repr__(self):
    1314        return self.first_name
     15}}}
    1416
    1517I get two tables in DB:
    16 app_peoples_first_name and app_peoples_last_name:
     18app_peoples_first_name and app_peoples_last_name
    1719
    1820And i also get three apis:
    19 set_first_name, set_last_name and get_name_list.
     21set_first_name, set_last_name and get_name_list
    2022
    2123while i think there should be two gets here: get_first_name_list and
Back to Top