aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/edit_feed.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-04-12 14:06:55 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-04-12 14:06:55 +0200
commit6c93d208c8b550f73a616906f71e1092a04e889b (patch)
tree2a8e3be071ae79ede53dccdbc204a1e861eecb5c /pyaggr3g470r/templates/edit_feed.html
parentFor the moment disable full text search on Heroku. (diff)
downloadnewspipe-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.html6
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") }}
bgstack15