{% extends "base.html" %} {% load i18n %} {% block title %}{{ title }}{% endblock %} {% block content %}

{{ title }}

{% if messages %} {% for msg in messages %}
{{ msg }}
{% endfor %} {% endif %}
{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{{ form.name }} {% for e in form.name.errors %}

{{ e }}

{% endfor %}
{{ form.url }} {% for e in form.url.errors %}

{{ e }}

{% endfor %}
{{ form.css_selector }}

{{ form.css_selector.help_text }}

{% for e in form.css_selector.errors %}

{{ e }}

{% endfor %}
{{ form.check_interval_hours }} {% for e in form.check_interval_hours.errors %}

{{ e }}

{% endfor %}
{{ form.alert_price_threshold }}

{{ form.alert_price_threshold.help_text }}

{% for e in form.alert_price_threshold.errors %}

{{ e }}

{% endfor %}
{{ form.recurring_notification }}

{{ form.recurring_notification.help_text }}

{% for e in form.recurring_notification.errors %}

{{ e }}

{% endfor %}
{{ form.enabled }}

{% trans "Uncheck to pause price checks for this watcher." %}

{% for e in form.enabled.errors %}

{{ e }}

{% endfor %}
{% trans "Cancel" %}

{% trans "Selector tip:" %} inspect the price on the product page and find its CSS class. E.g. .product-price or span[itemprop="price"]

{% block extra_js %} {% endblock %} {% endblock %}