Changes between Initial Version and Version 1 of Ticket #28631
- Timestamp:
- Sep 25, 2017, 7:31:12 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #28631
- Property Resolution → invalid
- Property Severity Release blocker → Normal
- Property Status new → closed
- Property Type Bug → Uncategorized
-
Ticket #28631 – Description
initial v1 3 3 However, looking at the definition of `admin.site.urls`: https://github.com/django/django/blob/master/django/contrib/admin/sites.py#L284 , we see it returning a 3-tuple. 4 4 5 ``` 5 {{{ 6 6 ImproperlyConfigured at / 7 7 Passing a 3-tuple to include() is not supported. Pass a 2-tuple containing the list of patterns and app_name, and provide the namespace argument to include() instead. 8 ``` 8 }}}