Blame view

mobile/source/modules/menu/tmpl/control_menu/edit_menu.html 1.19 KB
a1684257   Administrator   first commit
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
  <div style="width:600px;height:320px;overflow:auto" id="conteiner">
  		<pre onclick="this.style.display='none'" class="form_error" id="message" ></pre>
  		<form id="form_page" class="form" method="post" enctype="multipart/form-data" act="save">
  		<input type="hidden" name="id" tal:attributes="value row/c_id|" />
  		<table align="center">
  		
  			
      <tr>
  				<td width="25%" class="info" >* Название меню</td>
  				<td valign="top">
  					<input type="text" style="width:400px" name="form[c_name]" tal:attributes="value row/c_name|"/>
  				</td>
  			</tr>
  		
  			
  			<tr>
  				<td class="info">* Шаблон вывода</td>
  				<td valign="top">
  				<textarea style="height:200px;" name="form[tmpl]" tal:content="structure row/tmpl|"></textarea>
  				</td>
  			</tr>
  			
  			<tr>
  				<td class="info">* Пременная</td>
  				<td valign="top">
  					<input type="text" style="width:400px" name="form[c_var]" tal:attributes="value row/c_var|"/>
  				</td>
  			</tr>
  			
  		  
  		
  			<tr>
  				<td colspan="2" style="text-align:right">
  					<input type="submit" id="save_b"  value="${SAVE}" />
  					<input type="button" onclick="wnd.close()" value="${CLOSE}" />
  				</td>
  				
  			</tr>
  		</table>
  
  		</form>
  </div>