Files
benchcoach-django/templates/list.html
2021-11-10 14:18:31 -06:00

16 lines
458 B
HTML

{% extends "base.html" %}
{% block title %} {{ title }}{% endblock %}
{% block content %}
<h1>{{ title }}</h1>
<ol class="list-group">
{% for item in items %}
<li class="list-group-item">
<span class="fs-5 fw-bold">{{ item.title }}</span> <span class="fs-6">{{ item.subtitle }}</span>
<br>
<a class="btn btn-primary btn-sm" href="{% url edit_url_name item.id%}" role="button">Edit</a>
</li>
{% endfor %}
</ol>
{% endblock %}