mirror of
https://github.com/arcan1s/ffxivbis.git
synced 2025-07-16 07:09:59 +00:00
some life testing fixes
This commit is contained in:
@ -11,11 +11,6 @@
|
||||
{% include "search_line.jinja2" %}
|
||||
|
||||
<form action="/suggest" method="post">
|
||||
<select name="player" id="player" title="player">
|
||||
{% for player in players %}
|
||||
<option>{{ player|e }}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
<select name="piece" id="piece" title="piece">
|
||||
{% for piece in pieces %}
|
||||
<option>{{ piece|e }}</option>
|
||||
|
@ -12,7 +12,11 @@
|
||||
|
||||
<form action="/party" method="post">
|
||||
<input name="nick" id="nick" placeholder="player nick name" title="nick" type="text"/>
|
||||
<input name="job" id="job" placeholder="player job" title="job" type="text"/>
|
||||
<select name="job" id="job" title="job">
|
||||
{% for job in jobs %}
|
||||
<option>{{ job|e }}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
<input name="bis" id="bis" placeholder="player bis link" title="bis" type="text"/>
|
||||
<input name="priority" id="priority" placeholder="player priority" title="priority" type="number" value="0"/>
|
||||
<input name="action" id="action" type="hidden" value="add"/>
|
||||
|
Reference in New Issue
Block a user