added basic pages + task import
This commit is contained in:
12
templates/import.html
Normal file
12
templates/import.html
Normal file
@ -0,0 +1,12 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}Import tasks{% endblock %}
|
||||
{% block main %}
|
||||
<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>
|
||||
{% endblock %}
|
Reference in New Issue
Block a user