25 lines
489 B
HTML
25 lines
489 B
HTML
{% extends "base.dj.html" %}
|
|
|
|
{% block content %}
|
|
<h1>Tools</h1>
|
|
<ul>
|
|
{% for tool in tools %}
|
|
{% include "./components/tool_li.dj.html" with tool=tool %}
|
|
{% empty %}
|
|
<p>
|
|
No tools are available.
|
|
</p>
|
|
{% endfor %}
|
|
</ul>
|
|
<h1>Tasks</h1>
|
|
<ul>
|
|
{% for task in tasks %}
|
|
{% include "./components/task_li.dj.html" with task=task %}
|
|
{% empty %}
|
|
<p>
|
|
No tasks are available.
|
|
</p>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|