diff options
Diffstat (limited to 'pyaggr3g470r/templates')
-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") }} |