Blame view

mobile/source/modules/admin/tmpl/control_tmpl/clone_form.html 853 Bytes
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
  <div style="width:500px;height:200px" id="conteiner">
  		<form id="form_clone" class="form" method="post" enctype="multipart/form-data" onsubmit="return false">
  		<input type="hidden" name="id" tal:attributes="value row/t_id|" />
  		<table align="center">
  
  			
  
  			<tr>
  				<td width="30%" class="info" >Название</td>
  				<td valign="top"><input type="text" name="t_name" tal:attributes="value row/t_name|" /></td>
  			</tr>
  			<tr>
  				<td class="info">Описание</td>
  				<td valign="top"><textarea name="t_desc"  tal:content="row/t_desc|"  /></td>
  			</tr>
  			
  			
  			
  			<tr>
  				<td colspan="2" style="text-align:right">
  					<input type="button" onclick="table.clone_save()" value="Клонировать" />
  					<input type="button" onclick="wnd.close()" value="Закрыть" />
  				</td>
  				
  			</tr>
  		</table>
  
  		</form>
  </div>