port mod app

This commit is contained in:
2025-06-30 22:13:12 +03:00
parent 453aeff95a
commit c22aa1036f
8 changed files with 80 additions and 41 deletions

View File

@ -0,0 +1,10 @@
{% extends "base.html" %}
{% block content %}
<div class="darkbg settings-container">
<ul>
{% for user in users %}
<li><a href="{{url_for("users.page", username=user['username'])}}">{{user['username']}}</a>
{% endfor %}
</ul>
</div>
{% endblock %}