1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
royalnet/templates/components/memberbox.html

12 lines
394 B
HTML
Raw Normal View History

2019-01-06 18:54:49 +00:00
<div class="box" id="members-box">
<div class="upper-box">
Membri
</div>
<div class="lower-box">
2019-01-08 18:43:26 +00:00
<ul class="multicolumn">
{% for royal in royals %}
2019-02-03 18:34:17 +00:00
<li class="{% if royal.role == "Admin" %}list-admin{% endif %}"><a href="/profile/{{ royal.username }}">{{ royal.username }}</a></li>
{% endfor %}
</ul>
</div>
</div>