saturn_cli/templates/index.html
2024-01-21 10:54:26 +01:00

44 lines
1.3 KiB
HTML

<table id="csv_table">
{% for row in csv %}
<tr>
{% for col in row %}
<td>{{ col }}</td>
{% endfor %}
</tr>
{% endfor %}
</table>
<p></p>
<p></p>
<p></p>
<form action="new_animu" method = "POST">
<p>Vuoi aggiungerne uno nuovo?</p>
<table id="new_animu_table">
<tr>
<td>Url:</td><td><input type = "text" name = "field_url" /></td>
<td>Nome serie:</td><td><input type = "text" name = "field_folder" /></td>
<td>Stagione:</td><td><input type = "text" name = "field_season" /></td>
<td><input type = "submit" value = "submit" /></td>
</tr>
</table>
</form>
<form action="del_animu" method= "POST">
<p>Vuoi eliminare un anime?</p>
<input type = "text" name = "del_field" />
<input type = "submit" value = "submit" />
</form>
<form action="mod_animu" method = "POST">
<p>Vuoi modificare un anime?</p>
<table id="mod_animu_table">
<tr>
<td>Index:</td><td><input type = "text" name = "field_1_index" /></td>
<td>Url:</td><td><input type = "text" name = "field_1_url" /></td>
<td>Cartella:</td><td><input type = "text" name = "field_1_folder" /></td>
<td>Nome Ep:</td><td><input type = "text" name = "field_1_name" /></td>
<td>Abilitato:</td><td><input type = "text" name = "field_1_check" /></td>
<td>JellyNaming:</td><td><input type = "text" name = "field_1_naming" /></td>
<td><input type = "submit" value = "submit" /></td>
</tr>
</table>
</form>