diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-04-12 14:06:55 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-04-12 14:06:55 +0200 |
commit | 6c93d208c8b550f73a616906f71e1092a04e889b (patch) | |
tree | 2a8e3be071ae79ede53dccdbc204a1e861eecb5c /pyaggr3g470r/templates/edit_feed.html | |
parent | For the moment disable full text search on Heroku. (diff) | |
download | newspipe-6c93d208c8b550f73a616906f71e1092a04e889b.tar.gz newspipe-6c93d208c8b550f73a616906f71e1092a04e889b.tar.bz2 newspipe-6c93d208c8b550f73a616906f71e1092a04e889b.zip |
No SMTP for Heroku (for the moment).
Diffstat (limited to 'pyaggr3g470r/templates/edit_feed.html')
-rw-r--r-- | pyaggr3g470r/templates/edit_feed.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pyaggr3g470r/templates/edit_feed.html b/pyaggr3g470r/templates/edit_feed.html index 48b7ecaf..09065d4c 100644 --- a/pyaggr3g470r/templates/edit_feed.html +++ b/pyaggr3g470r/templates/edit_feed.html @@ -15,8 +15,10 @@ {{ form.site_link.label }} {{ form.site_link(class_="form-control") }} {% for error in form.site_link.errors %} <span style="color: red;">{{ error }}<br /></span>{% endfor %} - {{ form.email_notification.label }} - {{ form.email_notification(class_="checkbox") }} + {% if not_on_heroku %} + {{ form.email_notification.label }} + {{ form.email_notification(class_="checkbox") }} + {% endif %} {{ form.enabled.label }} {{ form.enabled(class_="checkbox") }} |