2022-01-16 18:22:00 +00:00
|
|
|
{% extends 'base.html.j2' %}
|
|
|
|
|
|
|
|
{% block title %}About{% endblock %}
|
|
|
|
|
|
|
|
{% block content_before %}
|
2022-04-03 18:33:33 +00:00
|
|
|
Online Players: {{ online }}
|
2022-01-16 18:22:00 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class='card mx-auto mt-5 shadow-sm bg-dark border-primary'>
|
|
|
|
<div class="card-body">
|
2022-04-03 18:33:33 +00:00
|
|
|
<h4 class="text-center">Staff</h4>
|
2022-01-16 18:22:00 +00:00
|
|
|
|
2022-04-03 18:31:43 +00:00
|
|
|
{% for mod in mods %}
|
|
|
|
<div class="row">
|
|
|
|
<div class="col text-right">
|
|
|
|
{{ mod.username }}
|
|
|
|
</div>
|
|
|
|
<div class="col">
|
|
|
|
{% with gm_level=mod.gm_level %}
|
|
|
|
{% include 'partials/_gm_level.html.j2' %}
|
|
|
|
{% endwith %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
2022-01-16 18:22:00 +00:00
|
|
|
|
|
|
|
<hr>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col text-right">
|
|
|
|
Source
|
|
|
|
</div>
|
|
|
|
<div class="col">
|
2022-01-17 02:24:47 +00:00
|
|
|
<a href="https://github.com/DarkflameUniverse/NexusDashboard">
|
2022-01-16 18:22:00 +00:00
|
|
|
Github
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|