Blame view

mobile/source/modules/admin/tmpl/control_snippets/edit_short.html 736 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
  <div style="width:850px;height:600px;overflow:auto" id="conteiner">
  		
  		<form id="snippet_form" class="form" method="post" enctype="multipart/form-data" onsubmit="return false">
  		<input type="hidden" name="id" tal:attributes="value row/snippet_id|" />
  		
  		<table align="center">
  		
  
       
  			<tr>
  				<td class="info">* Спиппет</td>
  				<td> <textarea  name="form[snippet]" style="width:700px;height:450px"  tal:content="row/snippet|" /></td>
  			</tr>
  			
  		
  		
  		
  			<tr>
  				<td colspan="2" style="text-align:right">
  					<input type="button" id="save_b" onclick="o.snippet.save()" value="${SAVE}" />
  					<input type="button" onclick="wnd.close()" value="${CLOSE}" />
  				</td>
  				
  			</tr>
  		</table>
  
  		</form>
  </div>