Changes between Initial Version and Version 1 of Ticket #32681
- Timestamp:
- Apr 23, 2021, 7:35:01 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #32681 – Description
initial v1 36 36 37 37 I believe this can be fixed by providing `subtitle: None` in the AdminSite.each_context` method to default it to that. I am happy to create a PR for this. 38 39 On second though - instead of hardcoding `subtitle` to None - potentially it should be a customisable option in the AdminSite itself, so: 40 41 class MySite(AdminSite): 42 site_header = "blah" 43 subtitle = "my subtitle" 44 45 ?