{% extends "base.html" %} {% load static %} {% load i18n %} {% block title %}{% trans "My Trigger" %} - {{ user.username }} - Trigger Happy{% endblock %} {% block content %}

{% trans 'Edition of the properties for' %} {{ context.description }}

{{ form.non_field_errors }}
{{ context.description }} {% csrf_token %}
{% if form.timeline.errors %} {% endif %}
{{ form.timeline }}
{% trans "Select the scope of the timeline" %}
{% if form.tag.errors %} {% endif %}
{{ form.tag }}
{% trans "Put the tag or 'string' you want to track from twitter" %}
{% if form.screen.errors %} {% endif %}
{{ form.tooter }}
{% trans "Put the name of a user (@user@masto.tld) you want to get his Toots" %}
{% if form.fav.errors %} {% endif %}
{{ form.fav }}
{% trans "Save the favorite of the 'Tooter' you filled above" %}
{% endblock %}