Adjust table styling and content on Host Game page
This commit is contained in:
parent
fbce8f26f5
commit
929239004d
|
@ -28,3 +28,17 @@
|
||||||
#host-game button{
|
#host-game button{
|
||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#host-game-table{
|
||||||
|
margin-right: auto;
|
||||||
|
text-align: center
|
||||||
|
}
|
||||||
|
|
||||||
|
#host-game-table td{
|
||||||
|
padding-left: 20px;
|
||||||
|
padding-right: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#host-game-table.dataTable{
|
||||||
|
width: unset;
|
||||||
|
}
|
||||||
|
|
|
@ -26,15 +26,11 @@
|
||||||
|
|
||||||
{% if rooms %}
|
{% if rooms %}
|
||||||
<h4>Your Rooms:</h4>
|
<h4>Your Rooms:</h4>
|
||||||
<table id="host-game-table" class="table">
|
<table id="host-game-table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Seed</th>
|
<th>Seed</th>
|
||||||
<th>Room</th>
|
<th>Room</th>
|
||||||
<th>Players</th>
|
|
||||||
<th>Created (UTC)</th>
|
|
||||||
<th>Last Activity (UTC)</th>
|
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
@ -43,10 +39,6 @@
|
||||||
<td><a href="{{ url_for("viewSeed", seed=room.seed.id) }}">{{ room.seed.id|suuid }}</a>
|
<td><a href="{{ url_for("viewSeed", seed=room.seed.id) }}">{{ room.seed.id|suuid }}</a>
|
||||||
</td>
|
</td>
|
||||||
<td><a href="{{ url_for("hostRoom", room=room.id) }}">{{ room.id|suuid }}</a></td>
|
<td><a href="{{ url_for("hostRoom", room=room.id) }}">{{ room.id|suuid }}</a></td>
|
||||||
<td>{{ room.seed.multidata.names[0]|length }} Total:
|
|
||||||
{{ room.seed.multidata.names[0]|join(", ")|truncate(256, False, " ...") }}</td>
|
|
||||||
<td>{{ room.creation_time.strftime("%Y-%m-%d %H:%M") }}</td>
|
|
||||||
<td>{{ room.last_activity.strftime("%Y-%m-%d %H:%M") }}</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
Loading…
Reference in New Issue