cmsmanage/tasks/templates/tasks/toolDetail.djhtml

19 lines
459 B
Plaintext

{% 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 %}