You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
398 B
16 lines
398 B
<!-- templates/admin_import.html -->
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Tournament Import</title>
|
|
</head>
|
|
<body>
|
|
<form method="POST" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
<div class="upload-zone">
|
|
<input type="file" name="tournament_zip" accept=".zip">
|
|
</div>
|
|
<button type="submit">Process Import</button>
|
|
</form>
|
|
</body>
|
|
</html>
|
|
|