add_link.html
996 Bytes
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
<div style="width:650px;height:200px;overflow:auto" id="conteiner">
<form id="form_page" class="form" method="post" enctype="multipart/form-data" act="save_link">
<input type="hidden" name="b_id" tal:attributes="value row/b_id|NULL" />
<table width="100%" align="center">
<tr>
<td class="info">Шаблон</td>
<td valign="top"> <select name="t_id" tal:content="structure row/tmplSelect" />
</td>
</tr>
<tr>
<td width="20%" class="info">Переменная</td>
<td valign="top"> <input type="text" name="var" /></td>
</tr>
<tr>
<td class="info">Настройки</td>
<td valign="top"> <input type="text" name="options" /></td>
</tr>
<tr>
<td colspan="2" style="text-align:right">
<input type="submit" value="Добавить" id="save_b" />
<input type="button" onclick="wnd.close()" value="Закрыть" />
</td>
</tr>
</table>
</form>
</div>