{% extends "issues/base_form_page.html" %} {% block subtitle %}{{ _('New Issue') }} - {{super()}}{% endblock %} {% block page_heading %}{{ _('New Issue') }} {% endblock %} {% import 'macros/form.html' as form %} {% set data = g.data_dict %} {% set errors = g.errors %} {% block ourform %}
{% block error_summary %} {% if g.error_summary | count %}

{{ _('The form contains invalid entries:') }}

{% endif %} {% endblock %} {% block fields %} {{ form.input('title', label=_('Title'), id='field-title', placeholder=_('Title'), value=data.title, error=errors.title, classes=['control-full']) }} {{ form.markdown('description', label=_('Description'), id='field-description', placeholder=_('Add a comment'), value=data.description, error=errors.description) }} {#{{ form.input('resource', label=_('Resource'), id='resource', attrs={'disabled':'1'}) }} ]#} {% endblock %}
{% endblock %}