diff options
author | Vitaly Takmazov | 2017-12-25 12:34:28 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2017-12-25 12:34:28 +0300 |
commit | d767b84a27b6864897bbfbd8c9250550975c5d45 (patch) | |
tree | f05e153262fbbcd52453d5c32026ed6c3a534bba /juick-www/src/main/webapp/WEB-INF | |
parent | 8956e7566e2bdc80ecbfdabe9c38bfe05d3e124b (diff) |
email notifications settings
Diffstat (limited to 'juick-www/src/main/webapp/WEB-INF')
-rw-r--r-- | juick-www/src/main/webapp/WEB-INF/views/settings_main.html | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/juick-www/src/main/webapp/WEB-INF/views/settings_main.html b/juick-www/src/main/webapp/WEB-INF/views/settings_main.html index 26539a69..dddf63bb 100644 --- a/juick-www/src/main/webapp/WEB-INF/views/settings_main.html +++ b/juick-www/src/main/webapp/WEB-INF/views/settings_main.html @@ -84,7 +84,7 @@ {% if emails is not empty %} <!--email_off--> <form action="/settings" method="POST" enctype="multipart/form-data"> - <p>You can receive all your subscriptions by email:<br/> + <p>You can receive notifications to email:<br/> Sent to <select name="account"> <option value="">Disabled</option> {% for email in emails %} @@ -92,13 +92,6 @@ {{ email }} </option> {% endfor %} - </select> every day at <select name="time"> - {% for hour in hours %} - <option value="{{ hour }}" {% if eopts.subscriptionHour == hour %} selected="selected" {% - endif %}> - {{ hour }}:00 GMT - </option> - {% endfor %} </select> <input type="hidden" name="page" value="email-subscr"/> <input type="submit" value="OK"/></p> |