blocks_edit.html 1018 Bytes
<div style="padding:5px;width:500px" id="conteiner">

<form class="form" id="edit_block" method="post" enctype="multipart/form-data" onsubmit="return false">
<input type="hidden" name="id" value="${id}"/>

<table width="100%" align="center">


<tr>
	<td width="30%" class="info">Блок</td>
	<td valign="top"><select size="5" name="b_id" tal:content="structure block_list" /> </td>
</tr>
			
<tr>
	<td  class="info" >Переменная</td>
	<td valign="top"><input type="text" name="var" tal:attributes="value row/var|" /> </td>
</tr>


<tr>
	<td  class="info" >Настройки</td>
	<td valign="top"><input type="text" name="options" tal:attributes="value row/options|" /> </td>
</tr>			
			
<tr>
	<td  class="info" >Заголовок</td>
	<td valign="top"><input type="text" name="title" tal:attributes="value row/title|" /> </td>
</tr>	
		
<tr>
	<td colspan="2"  style="text-align:right"><input type="button" onclick="table.blocks_save()" value="Сохранить" /></td>
</tr>
</table>
</form>

</div>