Changes between Initial Version and Version 1 of Ticket #13955


Ignore:
Timestamp:
Jul 16, 2010, 4:33:00 PM (14 years ago)
Author:
Alex Gaynor
Comment:

I've reformatted the description of this ticket, in the future you can use the "Preview" button to ensure that your message is formatted the way you intended.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #13955 – Description

    initial v1  
    11In a Model,
    2 
     2{{{
    33class Report(models.Model):
    44    report_number = models.CharField('NCAC report number', primary_key=True)
    5 
     5}}}
    66I've set the name for the capitalization of the acronym.
    77
    88When I use the Model as a ForeignKey,
    9 
     9{{{
    1010class RSL(models.Model):
    1111    report_number = models.ForeignKey('Report', null=True)
    12 
     12}}}
    1313the capitalization of the field name is lost, it will show up as 'Ncac report number' in the admin view for the RSL database.
Back to Top