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

@ -1,17 +1,23 @@
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<div class="floating-container">
<div class="floating-button">+</div>
<div class="element-container">
<a href="https://app.northpass.com/admin/schools/{{ session.admin_id }}">
<span class="float-element">
<i class="material-icons">admin_panel_settings</i>
</span>
{% if table %}
<a id="download" href="/downloadcsv">
<span class="float-element tooltip-left">
<i class="material-icons">admin_panel_settings
</i> </a> </span>
<span class="float-element">
<a href="#top">
<i class="material-icons">vertical_align_top
</i> </a> </span>
{% if table %}
<span class="float-element">
<a id="download" href="/downloadcsv">
<i class="material-icons">download_for_offline
</i></a>
</span>
</i> </a> </span>
{% endif %}
</div>
</div>