2024-02-07 17:31:12 +13:00
|
|
|
{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %}
|
|
|
|
{% extends 'themes/' + theme() + '/base.html' %}
|
|
|
|
{% else %}
|
|
|
|
{% extends "base.html" %}
|
2024-12-10 12:16:52 +01:00
|
|
|
{% endif %}
|
2023-11-03 21:59:48 +13:00
|
|
|
{% from 'bootstrap/form.html' import render_form %}
|
|
|
|
|
|
|
|
{% block app_content %}
|
2023-12-17 00:12:49 +13:00
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
|
|
|
{% include 'admin/_nav.html' %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-11-03 21:59:48 +13:00
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
2023-12-17 00:12:49 +13:00
|
|
|
<p>Welcome to the admin area. This page will eventually have some helpful guides and links for new admins but
|
|
|
|
for now it does not.</p>
|
2023-11-03 21:59:48 +13:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|