diff options
author | Vitaly Takmazov | 2018-03-14 10:04:40 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-03-14 10:04:40 +0300 |
commit | b2f3afebc7de684d1d49042f5f79a9cbf9c1f2f2 (patch) | |
tree | b7d5c7ca5b728751fa16d0085486b305da87d61d /juick-www/src/main/resources/templates/views | |
parent | b1e8980ed1460340fe4e8db2ce0d7ee1d213854a (diff) |
refactor email settings
Diffstat (limited to 'juick-www/src/main/resources/templates/views')
-rw-r--r-- | juick-www/src/main/resources/templates/views/settings_main.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/juick-www/src/main/resources/templates/views/settings_main.html b/juick-www/src/main/resources/templates/views/settings_main.html index ef46542d..65fbc984 100644 --- a/juick-www/src/main/resources/templates/views/settings_main.html +++ b/juick-www/src/main/resources/templates/views/settings_main.html @@ -88,7 +88,7 @@ Sent to <select name="account"> <option value="">Disabled</option> {% for email in emails %} - <option value="{{ email }}" {% if eopts.email == email %} selected="selected" {% endif %}> + <option value="{{ email }}" {% if email_active == email %} selected="selected" {% endif %}> {{ email }} </option> {% endfor %} |