pyfedi/app/templates/admin/home.html

18 lines
426 B
HTML
Raw Normal View History

2023-11-03 21:59:48 +13:00
{% extends "base.html" %}
{% from 'bootstrap/form.html' import render_form %}
{% block app_content %}
<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">
<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 %}