2020-12-14 13:22:14 -05:00
|
|
|
{% extends "base.djhtml" %}
|
2020-12-11 14:29:18 -05:00
|
|
|
|
2021-05-20 18:41:38 -04:00
|
|
|
{% block title %} {{ tool }} | {{ block.super }} {% endblock %}
|
2020-12-11 14:29:18 -05:00
|
|
|
|
2021-05-20 18:42:36 -04:00
|
|
|
{% block admin_link %}{% url 'admin:tasks_tool_change' tool.id %}{% endblock %}
|
|
|
|
|
2020-12-11 14:29:18 -05:00
|
|
|
{% block content %}
|
|
|
|
<nav aria-label="breadcrumb">
|
|
|
|
<ol class="breadcrumb">
|
|
|
|
<li class="breadcrumb-item"><a href="/">Home</a></li>
|
|
|
|
<li class="breadcrumb-item active" aria-current="page">{{ tool }}</li>
|
|
|
|
</ol>
|
|
|
|
</nav>
|
|
|
|
|
2021-05-20 18:20:04 -04:00
|
|
|
<section>
|
|
|
|
<h2>Tasks</h2>
|
|
|
|
<ul>
|
|
|
|
{% for task in tasks %}
|
|
|
|
{% include "./components/task_li.djhtml" with task=task %}
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</section>
|
2020-12-11 14:29:18 -05:00
|
|
|
{% endblock %}
|