{% extends 'base.html' %} {% load i18n %} {% load static %} {% load widget_tweaks %} {% block content %}
{% csrf_token %}
{{ form.name.label_tag }} {{ form.name|add_class:"form-control" }} {% if form.name.help_text %} {{ form.name.help_text }} {% endif %} {% for error in form.name.errors %}
{{ error }}
{% endfor %}
{{ form.description.label_tag }} {{ form.description|add_class:"form-control" }} {% if form.description.help_text %} {{ form.description.help_text }} {% endif %} {% for error in form.description.errors %}
{{ error }}
{% endfor %}
{% trans 'Back'%}
{% endblock %}