mirror of
https://github.com/arcan1s/ffxivbis.git
synced 2025-12-18 18:33:40 +00:00
add loot interfaces
This commit is contained in:
@ -13,7 +13,7 @@
|
||||
<form action="/bis" method="post">
|
||||
<select name="player" id="player" title="player">
|
||||
{% for player in players %}
|
||||
<option>{{ player.player|e }}</option>
|
||||
<option>{{ player|e }}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
<select name="piece" id="piece" title="piece">
|
||||
@ -29,7 +29,7 @@
|
||||
<form action="/bis" method="post">
|
||||
<select name="player" id="player" title="player">
|
||||
{% for player in players %}
|
||||
<option>{{ player.player|e }}</option>
|
||||
<option>{{ player|e }}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
<input name="bis" id="bis" placeholder="player bis link" title="bis" type="text"/>
|
||||
@ -45,11 +45,11 @@
|
||||
<th></th>
|
||||
</tr>
|
||||
|
||||
{% for player in players %}
|
||||
{% for item in items %}
|
||||
<tr>
|
||||
<td class="include_search">{{ player.player|e }}</td>
|
||||
<td class="include_search">{{ player.piece|e }}</td>
|
||||
<td>{{ player.is_tome|e }}</td>
|
||||
<td class="include_search">{{ item.player|e }}</td>
|
||||
<td class="include_search">{{ item.piece|e }}</td>
|
||||
<td>{{ item.is_tome|e }}</td>
|
||||
<td>
|
||||
<form action="/bis" method="post">
|
||||
<input name="action" id="action" type="hidden" value="remove"/>
|
||||
|
||||
Reference in New Issue
Block a user