Changes between Version 1 and Version 2 of CommonCausesForTranslationProblems


Ignore:
Timestamp:
Mar 25, 2010, 7:06:13 AM (14 years ago)
Author:
Ram Rachum
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CommonCausesForTranslationProblems

    v1 v2  
    99== ForeignKey without verbose_name parameter ==
    1010
    11 In your models, make sure that your ForeignKey fields get a verbose_name parameter. Like this:
     11In your models, make sure that your ForeignKey fields get a verbose_name parameter.
     12
     13Example:
    1214
    1315{{{
     
    1719== Model methods without short_description attribute ==
    1820
    19 If Django is displaying the name of some model method, it should have a short_description attribute. Like this:
     21If Django is displaying the name of some model method, it should have a short_description attribute.
     22
     23Example:
    2024
    2125{{{
Back to Top