entry_csv.html
1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{% extends 'base.html' %}
{% block header %}
<h1>{% block title %}数据录入{% endblock %}</h1>
{% endblock %}
{% block content %}
<form method="post" action="" enctype="multipart/form-data">
<label>Choose file</label>
<input type="file" name="file" id="file" required>
<label for="separator">separator</label>
<input name="separator" id="separator" required>
<label for="dateTimeColumn">dateTimeColumn</label>
<input name="dateTimeColumn" id="dateTimeColumn" required>
<label for="dateTimeFormat">dateTimeFormat</label>
<input name="dateTimeFormat" id="dateTimeFormat" required>
<label for="databaseGUID">databaseGUID</label>
<input name="databaseGUID" id="databaseGUID" required>
<label for="tableName">tableName</label>
<input name="tableName" id="tableName" required>
<label for="ifExist">ifExist</label>
<input name="ifExist" id="ifExist" required>
{# <label for="table">Table</label>#}
{# <input name="table" id="table" required>#}
{# <label for="encode">encode</label>#}
{# <input name="encode" id="encode" required>#}
<input type="submit" value="录入">
</form>
{% endblock %}