mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-23 15:57:23 -04:00
Mark which brands are used as default on list
So that: - we can see when a brand should be getting used as a default but isn’t - we’re careful updating brands which will get auto-applied to new services
This commit is contained in:
@@ -17,13 +17,20 @@
|
||||
<a href="{{ url_for('.create_email_branding') }}" class="button align-with-heading">Add new brand</a>
|
||||
</div>
|
||||
</div>
|
||||
{{ live_search(target_selector='.message-name', show=show_search_box, form=search_form) }}
|
||||
{{ live_search(target_selector='.email-brand', show=show_search_box, form=search_form) }}
|
||||
<nav>
|
||||
{% for id, name in email_brandings %}
|
||||
<div class="message-name">
|
||||
<a href="{{ url_for('.update_email_branding', branding_id=id) }}">
|
||||
{{name}}
|
||||
</a>
|
||||
{% for brand in email_brandings %}
|
||||
<div class="email-brand">
|
||||
<div class="message-name">
|
||||
<a href="{{ url_for('.update_email_branding', branding_id=brand.id) }}">
|
||||
{{ brand.name }}
|
||||
</a>
|
||||
</div>
|
||||
{% if brand.domain_owner %}
|
||||
<p class="message-type">
|
||||
Default for {{ brand.domain_owner }}
|
||||
</p>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endfor %}
|
||||
</nav>
|
||||
|
||||
Reference in New Issue
Block a user