mirror of
https://github.com/YGGverse/hlstate-rs.git
synced 2026-03-31 09:05:42 +00:00
15 lines
No EOL
360 B
Text
15 lines
No EOL
360 B
Text
{% extends "layout" %}
|
|
{% block content %}
|
|
<h2>Game</h2>
|
|
{% if servers %}
|
|
{% for server in servers %}
|
|
<div>
|
|
<h2><a href="{{ server.host }}">{{ server.name }}</a></h2>
|
|
</div>
|
|
{% endfor %}
|
|
{% else %}
|
|
<div>
|
|
<p>Nobody.</p>
|
|
</div>
|
|
{% endif %}
|
|
{% endblock content %} |