Changes between Initial Version and Version 3 of Ticket #5037


Ignore:
Timestamp:
Aug 1, 2007, 12:19:52 AM (17 years ago)
Author:
James Bennett
Comment:

Cleaning up summary and description to add formatting and make it clear what's being referenced.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #5037

    • Property Triage Stage UnreviewedAccepted
    • Property Summary wrong typefield for email field in models.pyDB-API docs model example uses URLField for email adress
  • Ticket #5037 – Description

    initial v3  
     1The example models in the DB API documentation include this:
     2
     3{{{
    14class Author(models.Model):
    25    name = models.CharField(maxlength=50)
     
    58    def __unicode__(self):
    69        return self.name
     10}}}
    711
    8 --------------------------------
     12It should be this:
    913
    10 it should be :
    11 
     14{{{
    1215class Author(models.Model):
    1316    name = models.CharField(maxlength=50)
     
    1619    def __unicode__(self):
    1720        return self.name
    18 
     21}}}
Back to Top