Changes between Initial Version and Version 1 of Ticket #1608


Ignore:
Timestamp:
Apr 10, 2006, 9:40:51 PM (18 years ago)
Author:
Adrian Holovaty
Comment:

(Fixed formatting in description)

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1608 – Description

    initial v1  
    11Using this model:
    2 
     2{{{
     3#!python
    34class Product(meta.Model):
    45    travelCode = meta.CharField('Reiscode', maxlength=7, primary_key=True)
     
    1213    class META:
    1314        admin = meta.Admin()
    14 
     15}}}
    1516Displaying Unit in the admin interface works for the Unit overview, even though self.nonexistentfield does not exist. When one selects an entry for editting, Django throws the following TemplateSyntaxError:
    1617
    1718------------------
     19{{{
    1820Traceback (most recent call last):
    1921
     
    5860
    5961TemplateSyntaxError: Caught an exception while rendering.
     62}}}
    6063------------------
    6164
Back to Top