attempted to use as much generic view as possible. the previous views were generic anyway. also did some managing of inheritance (extends/includes)
22 lines
415 B
HTML
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 %} |