21 lines
457 B
HTML
21 lines
457 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 %}
|