cmsmanage/tasks/templates/tasks/index.dj.html

21 lines
457 B
HTML
Raw Normal View History

2022-01-23 23:01:47 -05:00
{% extends "base.dj.html" %}
{% block content %}
2022-01-23 23:03:08 -05:00
<h1>Tools</h1>
<ul>
{% for tool in tools %}
2022-01-23 23:01:47 -05:00
{% include "./components/tool_li.dj.html" with tool=tool %}
{% empty %}
2022-09-03 00:25:39 -04:00
<p>No tools are available.</p>
{% endfor %}
</ul>
2022-01-23 23:03:08 -05:00
<h1>Tasks</h1>
<ul>
{% for task in tasks %}
2022-01-23 23:01:47 -05:00
{% include "./components/task_li.dj.html" with task=task %}
{% empty %}
2022-09-03 00:25:39 -04:00
<p>No tasks are available.</p>
{% endfor %}
</ul>
{% endblock %}