{% extends "helpdesk/base.html" %} {% load i18n %} {% block helpdesk_title %}{% trans "Checklist Templates" %}{% endblock %} {% block helpdesk_breadcrumb %} {% endblock %} {% block helpdesk_body %}

{% trans "Maintain checklist templates" %}

{% if checklist_template %} {% trans "Edit checklist template" %} {% else %} {% trans "Create new checklist template" %} {% endif %}
{% csrf_token %} {{ form.as_p }} {% if checklist_template %} {% for value in checklist_template.task_list %} {% include 'helpdesk/include/template_task_form_row.html' %} {% endfor %} {% else %} {% include 'helpdesk/include/template_task_form_row.html' %} {% endif %}
Task Actions
{% for checklist in checklists %}
{{ checklist.name }} {% if checklist_template.id != checklist.id %} {% endif %} {{ checklist.task_list|length }} {% trans "tasks" %}
{% endfor %}
{% endblock %} {% block helpdesk_js %} {% endblock %}