mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-23 20:01:01 -05:00
Grey-out ‘Not set’ for email reply-to address
The `default_reply_to_email_address` variable was not set anywhere so the conditional was having no effect.
This commit is contained in:
@@ -81,7 +81,7 @@
|
||||
|
||||
{% call settings_row(if_has_permission='email') %}
|
||||
{{ text_field('Email reply-to addresses') }}
|
||||
{% call field(status='default' if default_reply_to_email_address == None else '') %}
|
||||
{% call field(status='default' if current_service.count_email_reply_to_addresses == 0 else '') %}
|
||||
{{ current_service.default_email_reply_to_address or 'Not set' }}
|
||||
{% if current_service.count_email_reply_to_addresses > 1 %}
|
||||
<div class="hint">
|
||||
|
||||
Reference in New Issue
Block a user