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