Changes between Version 1 and Version 2 of Ticket #32681
- Timestamp:
- Apr 23, 2021, 7:35:21 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #32681 – Description
v1 v2 39 39 On second though - instead of hardcoding `subtitle` to None - potentially it should be a customisable option in the AdminSite itself, so: 40 40 41 {{{ 41 42 class MySite(AdminSite): 42 43 site_header = "blah" 43 44 subtitle = "my subtitle" 45 }}} 44 46 45 47 ?