Changes between Initial Version and Version 1 of Ticket #1608
- Timestamp:
- Apr 10, 2006, 9:40:51 PM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1608 – Description
initial v1 1 1 Using this model: 2 2 {{{ 3 #!python 3 4 class Product(meta.Model): 4 5 travelCode = meta.CharField('Reiscode', maxlength=7, primary_key=True) … … 12 13 class META: 13 14 admin = meta.Admin() 14 15 }}} 15 16 Displaying 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: 16 17 17 18 ------------------ 19 {{{ 18 20 Traceback (most recent call last): 19 21 … … 58 60 59 61 TemplateSyntaxError: Caught an exception while rendering. 62 }}} 60 63 ------------------ 61 64