
Get event management page almost working! Deleting events works, creating new events works, editing events (almost) works! Just need to figure out how to properly set the date and time fields when editing... Also, user management! You can see a list of users and will theoretically be able to promote officers from the web UI
7 lines
257 B
HTML
7 lines
257 B
HTML
{% extends "admin/admin-layout.html" %}
|
|
|
|
{% block app_content %}
|
|
<h1>Welcome to the Officer Dashboard!</h1>
|
|
<p>Use the navbar up top to navigate to a user dashboard, event dashboard, and
|
|
bulk mail tool (when/if it works...).</p>
|
|
{% endblock app_content %}
|