19 lines
585 B
HTML
Raw Normal View History

2025-01-26 00:53:17 +01:00
{% extends "base.html" %}
{% load static %}
2025-01-26 00:53:17 +01:00
{% block title %}Import tasks{% endblock %}
{% block head %}
<link rel="stylesheet" href="{% static "form.css" %}">
{% endblock %}
2025-01-26 00:53:17 +01:00
{% block main %}
<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 %}