mirror of
https://github.com/dolphin-emu/netplay-index.git
synced 2026-01-31 01:15:20 +01:00
37 lines
781 B
HTML
37 lines
781 B
HTML
{% extends "../base.html" %}
|
|
{% block title %}Server List{% end %}
|
|
{% block content %}
|
|
<table class="table table-striped">
|
|
<thead class="thead-light">
|
|
<tr>
|
|
<th>Region</th>
|
|
<th>Name</th>
|
|
<th>Game</th>
|
|
<th>Host</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for session in sessions %}
|
|
<tr>
|
|
<td>
|
|
{{ escape(sessions[session]['region']) }}
|
|
</td>
|
|
<td>
|
|
{{ escape(sessions[session]['name']) }}
|
|
</td>
|
|
<td>
|
|
{{ escape(sessions[session]['game']) }}
|
|
</td>
|
|
<td>
|
|
{{ escape(hosts[session]) }}
|
|
</td>
|
|
<td>
|
|
<a href="/v0/session/remove?secret={{ escape(session) }}" target="_blank">Remove</a>
|
|
</td>
|
|
</tr>
|
|
{% end %}
|
|
</tbody>
|
|
</table>
|
|
{% end %}
|