some cleanup

This commit is contained in:
2019-09-11 03:38:50 +03:00
parent 082022dee7
commit 14c1e4842c
8 changed files with 31 additions and 22 deletions

View File

@ -24,7 +24,9 @@
<table id="result">
<tr>
<th>player</th>
<th>bis pieces looted</th>
<th>is required</th>
<th>these pieces looted</th>
<th>total bis pieces looted</th>
<th>total pieces looted</th>
<th></th>
</tr>
@ -32,8 +34,10 @@
{% for player in suggest %}
<tr>
<td class="include_search">{{ player.player|e }}</td>
<td>{{ player.loot_count_bis|e }}</td>
<td>{{ player.is_required|e }}</td>
<td>{{ player.loot_count|e }}</td>
<td>{{ player.loot_count_bis|e }}</td>
<td>{{ player.loot_count_total|e }}</td>
<td>
<form action="/loot" method="post">
<input name="player" id="player" type="hidden" value="{{ player.player|e }}"/>

View File

@ -28,7 +28,7 @@
<tr>
<th>nick</th>
<th>job</th>
<th>bis pieces looted</th>
<th>total bis pieces looted</th>
<th>total pieces looted</th>
<th>priority</th>
<th></th>
@ -39,7 +39,7 @@
<td class="include_search">{{ player.nick|e }}</td>
<td class="include_search">{{ player.job|e }}</td>
<td>{{ player.loot_count_bis|e }}</td>
<td>{{ player.loot_count|e }}</td>
<td>{{ player.loot_count_total|e }}</td>
<td>{{ player.priority|e }}</td>
<td>
<form action="/party" method="post">