{% load widget_tweaks %}
{{ form.title.label }} {% if form.title.errors %}
    {% for error in form.title.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %} {{ form.title }}
{{ form.description.label }} {% if form.description.errors %}
    {% for error in form.description.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %} {{ form.description }}
{{ form.section.label }} {% if form.section.errors %}
    {% for error in form.section_id.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %} {{ form.section }}
{{ form.issues.label }} {% if form.issues.errors %}
    {% for error in form.issues.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %} {% render_field form.issues data-url=api_issues_search_url %}
{% for issue in issues_suggesions %} {% endfor %}
{{ form.authors.label }} {% if form.authors.errors %}
    {% for error in form.authors.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %} {% render_field form.authors data-url=api_authors_search_url %}
{{ form.finished_at.label }} {% if form.finished_at.errors %}
    {% for error in form.finished_at.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %} {# {{ form.finished_at }}#}