Files
benchcoach-django/benchcoach/templates/benchcoach/detail.html
Tony 33c772bd2f develop templates for consolidated apps benchcoach
attempted to use as much generic view as possible. the previous views were generic anyway. also did some managing of inheritance (extends/includes)
2021-12-21 17:18:04 -06:00

22 lines
415 B
HTML

{% extends 'base.html' %}
{% block navbar %}
{% with events_tab="active" %}
{{ block.super }}
{% endwith %}
{% endblock %}
{% block page_heading %}
Object
{% endblock %}
{% block content %}
<div class="card p-0">
<div class="card-body p-0">
<table class="table m-0">
{% block rows %}
{% endblock %}
</table>
</div>
</div>
{% endblock %}