Added getting people functionality. Configured the action button to only show up if there's something to do (like a table) and also can scroll to the top.

This commit is contained in:
Norm Rasmussen
2023-04-06 16:46:49 -04:00
parent d55694fab0
commit eade9a5f27
7 changed files with 140 additions and 41 deletions

View File

@ -3,6 +3,18 @@
{% include 'header.html' %}
{% include 'logo.html' %}
{% block content %}
<h2>Academy: {{ session.raw_school }}.</h2>
</br>
</br>
<h2>Academy: {{ session.raw_school }}</h2>
<p>&nbsp</p>
<h3>Subdomain:
<a class="subdom-link" href={{ session.subdomain }}>{{ session.subdomain }}
</a>
</h3>
{% endblock %}
<style>
.subdom-link { color: #089FB7; }
.subdom-link:hover { color: #F05323; }
</style>