Changes between Initial Version and Version 1 of Ticket #32681


Ignore:
Timestamp:
Apr 23, 2021, 7:35:01 PM (3 years ago)
Author:
Zain Patel
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32681 – Description

    initial v1  
    3636
    3737I 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
     39On second though - instead of hardcoding `subtitle` to None - potentially it should be a customisable option in the AdminSite itself, so:
     40
     41class MySite(AdminSite):
     42  site_header = "blah"
     43  subtitle = "my subtitle"
     44
     45?
Back to Top