Changes between Initial Version and Version 1 of Ticket #18576
- Timestamp:
- Jul 6, 2012, 6:55:56 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18576
- Property Owner changed from to
- Property Triage Stage Unreviewed → Accepted
- Property Status new → assigned
-
Ticket #18576 – Description
initial v1 2 2 3 3 The example code is as follows: 4 4 {{{ 5 5 from django.contrib import admin 6 6 from polls.models import Poll … … 18 18 19 19 admin.site.register(Poll, PollAdmin) 20 21 22 20 }}} 23 21 24 22