{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Price Monitor — Settings" %}{% endblock %} {% block content %}

{% trans "Price Monitor Settings" %}

{% if messages %} {% for msg in messages %}
{{ msg }}
{% endfor %} {% endif %}

{% trans "Telegram Notifications" %}

{% csrf_token %} {% for field in form %}
{{ field }} {% if field.help_text %}

{{ field.help_text }}

{% endif %} {% for error in field.errors %}

{{ error }}

{% endfor %}
{% endfor %}

{% trans "These credentials apply to all price drop alerts. Create a bot via" %} @BotFather {% trans "and get your chat ID from" %} @userinfobot.

{% endblock %}