Changes between Initial Version and Version 1 of Ticket #3914


Ignore:
Timestamp:
Apr 3, 2007, 9:23:47 PM (17 years ago)
Author:
Adrian Holovaty
Comment:

(Fixed formatting in description.)

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3914 – Description

    initial v1  
    11If you use this model:
    22
     3{{{
     4#!python
    35class Page(models.Model):
    46    title = models.CharField(maxlength=192)
     
    1214    class Admin:
    1315        list_display = ['title','parent','visible_on_menu']
     16}}}
    1417
    1518And try to go to the model in the admin interface, the development server just dies.  There is no error, it just goes back to a command prompt waiting.
Back to Top