{% extends 'base.html' %} {% block content %} {% from '_helpers.html' import render_field, render_checkbox_field, render_button %} {% from '_common_fields.html' import render_common_settings_form %}
{{ render_field(form.title, placeholder="https://...", required=true, class="m-d") }}

These settings are added to any existing watch configurations.

{% include "edit/include_subtract.html" %}

Text filtering

{% include "edit/text-options.html" %}
{# rendered sub Template #} {% if extra_form_content %}
{{ extra_form_content|safe }}
{% endif %}
{{ render_checkbox_field(form.notification_muted) }}
{% if 1 %}
{{ render_checkbox_field(form.notification_screenshot) }} Use with caution! This will easily fill up your email storage quota or flood other storages.
{% endif %}
{% if has_default_notification_urls %}
Look out! There are system-wide notification URLs enabled, this form will override notification settings for this watch only ‐ an empty Notification URL list here will still send notifications.
{% endif %} Use system defaults {{ render_common_settings_form(form, emailprefix, settings_application, extra_notification_token_placeholder_info) }}
{{ render_button(form.save_button) }}
{% endblock %}