You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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 %}
|