Changes between Initial Version and Version 1 of Ticket #13872


Ignore:
Timestamp:
Jul 2, 2010, 5:45:14 PM (14 years ago)
Author:
Ramiro Morales
Comment:

Reformatted, please use correct WikiFormatting and the Preview button before sumbitting the ticket.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #13872 – Description

    initial v1  
    77Here are my models. Adding a Baz works just fine, but adding a Bar causes the exception:
    88
    9 {{{from django.db import models
     9{{{
     10from django.db import models
    1011
    1112class Bar(models.Model):
     
    2021
    2122And a traceback:
    22 {{{Environment:
     23
     24{{{
     25Environment:
    2326
    2427Request Method: POST
     
    8689
    8790Exception Type: AttributeError at /admin/foo/bar/add/
    88 Exception Value: 'module' object has no attribute 'day_abbr'}}}
     91Exception Value: 'module' object has no attribute 'day_abbr'
     92}}}
Back to Top