Changes between Initial Version and Version 1 of Ticket #12469
- Timestamp:
- Feb 9, 2010, 5:56:38 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #12469
- Property Triage Stage Unreviewed → Accepted
-
Ticket #12469 – Description
initial v1 2 2 http://docs.djangoproject.com/en/dev/ref/contrib/admin/#django.contrib.admin.ModelAdmin.get_urls 3 3 4 1. The path in the example r' ^my_view/$' will be accessed at /admin/myapp/mymodel/my_view/4 1. The path in the example r'!^my_view/$' will be accessed at /admin/myapp/mymodel/my_view/ 5 5 6 6 2. self.my_view in the example means that you probably want to define the view inside the MyModelAdmin Class so it has access to the ModelAdmin.