22 lines
487 B
HTML
22 lines
487 B
HTML
<html>
|
|
<head>
|
|
<title>File selection</title>
|
|
</head>
|
|
<body>
|
|
<h1>Select File</h1>
|
|
|
|
{% if form.errors %}
|
|
<p style="color: red;">
|
|
Please correct the error{{ form.errors|pluralize }} below.
|
|
</p>
|
|
{% endif %}
|
|
|
|
<form enctype="multipart/form-data" action="{{ formloc }}" method="post">
|
|
<table>
|
|
{{ form.as_table }}
|
|
</table>
|
|
{% csrf_token %}
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
</body>
|
|
</html> |