Updated icons for sidebar navigation as well as some labels.

Tweaked zone record list on dashboard to always include the account column, regardless of user role.
This commit is contained in:
Matt Scott
2023-02-19 11:31:24 -05:00
parent c0799b95f8
commit b4a354b0f8
3 changed files with 10 additions and 12 deletions

View File

@ -31,6 +31,8 @@
{% macro account(domain) %}
{% if current_user.role.name in ['Administrator', 'Operator'] %}
{{ domain.account.name if domain.account else 'None' }}
{% else %}
None
{% endif %}
{% endmacro %}