diff --git a/helpdesk/templates/helpdesk/checklist_templates.html b/helpdesk/templates/helpdesk/checklist_templates.html index 30db0975..12c671ce 100644 --- a/helpdesk/templates/helpdesk/checklist_templates.html +++ b/helpdesk/templates/helpdesk/checklist_templates.html @@ -38,10 +38,10 @@ {% if checklist_template %} {% for value in checklist_template.task_list %} - {% include 'helpdesk/include/task_form_row.html' %} + {% include 'helpdesk/include/template_task_form_row.html' %} {% endfor %} {% else %} - {% include 'helpdesk/include/task_form_row.html' %} + {% include 'helpdesk/include/template_task_form_row.html' %} {% endif %} @@ -107,7 +107,7 @@ $(() => { $('#addTask').on('click', () => { - $('#tasks').append(`{% include 'helpdesk/include/task_form_row.html' %}`) + $('#tasks').append(`{% include 'helpdesk/include/template_task_form_row.html' %}`) }) $('#tasks').sortable({ diff --git a/helpdesk/templates/helpdesk/include/task_form_row.html b/helpdesk/templates/helpdesk/include/template_task_form_row.html similarity index 100% rename from helpdesk/templates/helpdesk/include/task_form_row.html rename to helpdesk/templates/helpdesk/include/template_task_form_row.html