first commit

This commit is contained in:
2023-06-22 08:10:29 +00:00
commit abf7741b16
15 changed files with 597 additions and 0 deletions

20
templates/menu.html Normal file
View File

@@ -0,0 +1,20 @@
{% block main %}
<div class="logout">
<ul>
{% for item in nav.top %}
<li class="{{ 'active' if item.is_active else '' }}">
<a href="{{ item.url }}">{{ item.label }}</a>
</li>
{% endfor %}
<li style="float:right;">
<a href="logout"><span class="fas fa-user" style="display: inline;"></span> Logout</a>
</li>
<li style="float:right;">
<a href="javascript:window.location.href=window.location.href"><span class="fas fa-sync" style="display: inline;"></span></a>
</li>
</ul>
</div>
<br>
<br>
{% endblock %}