edit.html
1.4 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
42
43
44
45
46
47
48
49
50
51
<div style="width:650px;height:200px;overflow:auto" id="conteiner">
<form id="form_page" class="form" method="post" enctype="multipart/form-data" onsubmit="return false">
<input type="hidden" name="id" tal:attributes="value row/lang_id|" />
<table align="center">
<tr>
<td class="info">* Язык</td>
<td><select name="form[lang]" tal:content="structure row/lang_list|"/></td>
</tr>
<tr>
<td width="15%" class="info" >* Константа</td>
<td valign="top">
<input type="text" style="width:400px" name="form[key]" tal:attributes="value row/key|"/>
</td>
</tr>
<tr>
<td width="15%" class="info" >* Значение</td>
<td valign="top">
<input type="text" style="width:400px" name="form[value]" tal:attributes="value row/value|"/>
</td>
</tr>
<tr>
<td width="15%" class="info" >* Модуль</td>
<td valign="top">
<select name="form[m_id]" tal:content="structure row/module_list|"/>
</td>
</tr>
<tr>
<td class="info">Файл</td>
<td><input type="text" style="width:400px" name="form[file]" tal:attributes="value row/file|"/></td>
</tr>
<tr>
<td colspan="2" style="text-align:right">
<input type="button" id="save_b" onclick="table.save()" value="${SAVE}" />
<input type="button" onclick="wnd.close()" value="${CLOSE}" />
</td>
</tr>
</table>
</form>
</div>