mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
12 lines
No EOL
369 B
HTML
12 lines
No EOL
369 B
HTML
<div class="box" id="members-box">
|
|
<div class="upper-box">
|
|
Membri
|
|
</div>
|
|
<div class="lower-box">
|
|
<ul>
|
|
{% for royal in royals %}
|
|
<li class="{% if royal.role == "Admin" %}admin{% endif %}"><a href="/profile/{{ royal.username }}">{{ royal.username }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</div> |