Changes between Initial Version and Version 2 of Ticket #1939
- Timestamp:
- Jun 19, 2006, 11:07:52 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1939 – Description
initial v2 1 1 A minimal model that reproduces the problem: 2 2 3 {{{ 3 4 class Account(models.Model): 4 5 class Admin: … … 12 13 contra = models.ForeignKey(Account, related_name = 'transactions2') 13 14 description = models.CharField(maxlength = 64) 15 }}} 14 16 15 17 This code, when run in the admin, and when goes to the Account add screen, produces 16 18 the following traceback: 17 19 20 {{{ 18 21 Traceback (most recent call last): 19 22 File "/home/ww/django_src/django/template/__init__.py" in render_node … … 36 39 KeyError at /admin/record/account/add/ 37 40 'account' 41 }}} 38 42 39 43 I am running SVN as of a few minutes ago.