{% 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.project_name.errors %} {% endif %}
{{ form.project_name }}
{% if form.webhook_secret_key.errors %} {% endif %}
{{ form.webhook_secret_key }}

Notify Epics

{% if form.notify_epic_create.errors %} {% endif %}
{{ form.notify_epic_create }}
{% if form.notify_epic_change.errors %} {% endif %}
{{ form.notify_epic_change }}
{% if form.notify_epic_delete.errors %} {% endif %}
{{ form.notify_epic_delete }}

Notify Epics related User stories

{% if form.notify_relateduserstory_create.errors %} {% endif %}
{{ form.notify_relateduserstory_create }}
{% if form.notify_relateduserstory_delete.errors %} {% endif %}
{{ form.notify_relateduserstory_delete }}

Notify User stories

{% if form.notify_userstory_create.errors %} {% endif %}
{{ form.notify_userstory_create }}
{% if form.notify_userstory_change.errors %} {% endif %}
{{ form.notify_userstory_change }}
{% if form.notify_userstory_delete.errors %} {% endif %}
{{ form.notify_userstory_delete }}

Notify Issues

{% if form.notify_issue_create.errors %} {% endif %}
{{ form.notify_issue_create }}
{% if form.notify_userstory_change.errors %} {% endif %}
{{ form.notify_issue_change }}
{% if form.notify_issue_delete.errors %} {% endif %}
{{ form.notify_issue_delete }}

Notify Tasks

{% if form.notify_task_create.errors %} {% endif %}
{{ form.notify_task_create }}
{% if form.notify_task_change.errors %} {% endif %}
{{ form.notify_task_change }}
{% if form.notify_task_delete.errors %} {% endif %}
{{ form.notify_task_delete }}

Notify Wiki

{% if form.notify_wikipage_create.errors %} {% endif %}
{{ form.notify_wikipage_create }}
{% if form.notify_wikipage_change.errors %} {% endif %}
{{ form.notify_wikipage_change }}
{% if form.notify_wikipage_delete.errors %} {% endif %}
{{ form.notify_wikipage_delete }}
{% endblock %}