cmsmanage/tasks/templates/tasks/toolDetail.djhtml

24 lines
606 B
Plaintext
Raw Normal View History

2020-12-14 13:22:14 -05:00
{% extends "base.djhtml" %}
2021-05-20 18:41:38 -04:00
{% block title %} {{ tool }} | {{ block.super }} {% endblock %}
{% block admin_link %}{% url 'admin:tasks_tool_change' tool.id %}{% 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>
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>
{% endblock %}