{% extends "maintenance/base.html" %} {% block content %}
Search/select components: {{ quickselect }}
Selected components for this task: {% for key, identifiers in selected.items %} {% for id in identifiers %} {% endfor %} {% endfor %} {% if components %}
    {% for comp in components %}
  • {{ comp.title|capfirst }}: {% for elem in comp.trail %} {% if elem.url %} {{ elem.name }} {% else %} {{ elem.name }} {% endif %} {% if not forloop.last %} → {% endif %} {% endfor %}
  • {% endfor %}

{% else %}

(none)

{% endif %}
{{ task_form.non_field_errors }}
{{ task_form.start_time.errors }} {{ task_form.start_time }}
{{ task_form.end_time.errors }} {{ task_form.end_time }}   {{ task_form.no_end_time.errors }} {{ task_form.no_end_time }}
{{ task_form.description.errors }} {{ task_form.description }}
{% endblock %}