upload template
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}Upload data{% endblock %}
|
||||
{% block content %}
|
||||
<h1>Upload data</h1>
|
||||
<form method="post" enctype="multipart/form-data">
|
||||
<input type="radio" id="dsw" name="recordtype" value="dsw">
|
||||
<label for="dsw">DSW</label>
|
||||
<input type="radio" id="chargestatement" name="recordtype" value="chargestatement">
|
||||
<label for="chargestatement">Charge Statement</label>
|
||||
<label for="file">Choose File</label>
|
||||
<input type="file" id="file" name="file" accept=".xls,.xlsx">
|
||||
<input type="submit" value="Upload">
|
||||
</form>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user