{% 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.title.errors %} {% endif %}
{{ form.title }}
{% if form.category.errors %} {% endif %}
{{ form.category }}
{% if form.tags.errors %} {% endif %}
{{ form.tags }}
{% if form.url.errors %} {% endif %}
{{ form.url }}
{% trans "this URL will be displayed in the footer of the post eg <a href='https://trigger-happy.eu/'>Provided by Trigger-Happy</a>" %}
{% if form.path.errors %} {% endif %}
{{ form.path }}
{% trans "set the path that leads to the content folder of pelican, eg /home/trigger-happy/pelican/content" %}
{% endblock %}