{% 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 %}

{% trans 'Select one type of push and one destination where the push will go' %}

{% if form.type.errors %} {% endif %}
{{ form.type }}

{% trans 'Select one destination of the push' %}

{% if form.device.errors %} {% endif %}
{{ form.device }}
{% if form.email.errors %} {% endif %}
{{ form.email }}
{% if form.channel_tag.errors %} {% endif %}
{{ form.channel_tag }}
{% endblock %}