11 lines
449 B
11 lines
449 B
{% extends "base.html" %}
|
|
{% block title %}{{ title }}{% endblock %}
|
|
{% block content %}
|
|
<div class="container-fluid text-center rounded-3 mt-2 mb-2" style="{{ theme.form.div_style }};">
|
|
<h1 class="account-heading" style="color: {{ theme.orange }};">{{ title }}</h1>
|
|
</div>
|
|
<div class="container-fluid rounded-3 mt-2 mb-2" style="{{ theme.form.div_style }};">
|
|
{% include 'table.html' %}
|
|
</div>
|
|
{% endblock content %}
|