{% 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.tag.errors %} {% endif %}
{{ form.tag }}
{% trans "Put the tag or 'string' you want to track from twitter" %}
{% if form.screen.errors %} {% endif %}
{{ form.screen }}
{% trans "Put the name of a user you want to get his tweets" %}
{% if form.fav.errors %} {% endif %}
{{ form.fav }}
{% trans "Save the favorite of the 'screen' you filled above" %}
{% endblock %}