29 lines
730 B
HTML
29 lines
730 B
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>
|