Rename template_task_form_row.html

This commit is contained in:
Benbb96 2023-04-30 03:24:12 +02:00
parent ef88a2ee8a
commit ff61f85d59
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View File

@ -38,10 +38,10 @@
<tbody id="tasks"> <tbody id="tasks">
{% if checklist_template %} {% if checklist_template %}
{% for value in checklist_template.task_list %} {% for value in checklist_template.task_list %}
{% include 'helpdesk/include/task_form_row.html' %} {% include 'helpdesk/include/template_task_form_row.html' %}
{% endfor %} {% endfor %}
{% else %} {% else %}
{% include 'helpdesk/include/task_form_row.html' %} {% include 'helpdesk/include/template_task_form_row.html' %}
{% endif %} {% endif %}
</tbody> </tbody>
</table> </table>
@ -107,7 +107,7 @@
$(() => { $(() => {
$('#addTask').on('click', () => { $('#addTask').on('click', () => {
$('#tasks').append(`{% include 'helpdesk/include/task_form_row.html' %}`) $('#tasks').append(`{% include 'helpdesk/include/template_task_form_row.html' %}`)
}) })
$('#tasks').sortable({ $('#tasks').sortable({