update_info.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
39
40
41
{% extends 'base.html' %}
{% block header %}
<h1>{% block title %}更新数据信息{% endblock %}</h1>
{% endblock %}
{% block content %}
<form method="post">
<label for="GUID">GUID</label>
<input name="GUID" id="GUID" required>
<label for="dataAlias">dataAlias</label>
<input name="dataAlias" id="dataAlias">
{# <label for="tableName">tableName</label>#}
{# <input name="tableName" id="tableName">#}
<label for="coordinateName">coordinateName</label>
<input name="coordinateName" id="coordinateName">
<label for="description">description</label>
<input name="description" id="description">
<label for="categoryGUID">categoryGUID</label>
<input name="categoryGUID" id="categoryGUID">
<label for="dataTypeGUID">dataTypeGUID</label>
<input name="dataTypeGUID" id="dataTypeGUID">
<label for="departmentGUID">departmentGUID</label>
<input name="departmentGUID" id="departmentGUID">
<label for="resourcePath">resourcePath</label>
<input name="resourcePath" id="resourcePath">
<input type="submit" value="更新">
</form>
{% endblock %}