2025-01-26 00:53:17 +01:00
|
|
|
{% extends "base.html" %}
|
2025-02-02 21:48:12 +01:00
|
|
|
{% load static %}
|
2025-01-26 00:53:17 +01:00
|
|
|
{% block title %}Import tasks{% endblock %}
|
2025-02-02 21:48:12 +01:00
|
|
|
{% block head %}
|
|
|
|
<link rel="stylesheet" href="{% static "form.css" %}">
|
|
|
|
{% endblock %}
|
2025-01-26 00:53:17 +01:00
|
|
|
{% block main %}
|
2025-02-02 21:48:12 +01:00
|
|
|
<div class="container">
|
|
|
|
<h1>Import tasks</h1>
|
|
|
|
<form action="" method="POST" enctype="multipart/form-data">
|
|
|
|
{% csrf_token %}
|
|
|
|
<div>
|
|
|
|
<label for="file">File</label>
|
|
|
|
<input type="file" name="file" id="file">
|
|
|
|
</div>
|
|
|
|
<button type="submit">Import</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
2025-01-26 00:53:17 +01:00
|
|
|
{% endblock %}
|