cmsmanage/tasks/templates/tasks/toolDetail.djhtml

19 lines
459 B
Plaintext
Raw Normal View History

2020-12-14 13:22:14 -05:00
{% extends "base.djhtml" %}
{% 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 %}