Added Jinja filter for handle formatting of zone type labels to enforce modern social standards.

Removed text label of dashboard domain list action menu to reduce size.

Continuing work on re-design and clean-up of dashboard view.
This commit is contained in:
Matt Scott
2023-02-19 09:48:43 -05:00
parent d70ded18c2
commit 4f83879e95
4 changed files with 19 additions and 5 deletions

View File

@ -77,6 +77,7 @@ def create_app(config=None):
app.jinja_env.filters['display_setting_state'] = utils.display_setting_state
app.jinja_env.filters['pretty_domain_name'] = utils.pretty_domain_name
app.jinja_env.filters['format_datetime_local'] = utils.format_datetime
app.jinja_env.filters['format_zone_type'] = utils.format_zone_type
# Register context proccessors
from .models.setting import Setting