2020-12-14 13:22:14 -05:00
|
|
|
{% extends "base.djhtml" %}
|
2020-12-11 14:29:18 -05:00
|
|
|
|
|
|
|
{% block title %} {{ tool }} {% endblock %}
|
|
|
|
|
|
|
|
{% 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>
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
{% for task in tasks %}
|
|
|
|
<li><a href="{{ task.get_absolute_url }}">{{ task.name }}</a></li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% endblock %}
|