30 lines
926 B
Smarty
30 lines
926 B
Smarty
<div class="panelRightTop"></div>
|
|
<div class="panelRightBody">
|
|
<div class="paddedContent">
|
|
{dropDownContainer title="Zmienne systemowe"}
|
|
<table align="center" class="datagrid" cellpadding="4" cellspacing="1" style="width: 500px;">
|
|
<th>Lp.</th>
|
|
<th>zmienna</th>
|
|
<th>wartość</th>
|
|
<th>opis</th>
|
|
<th class="light"><a href="{url setup=new}">dodaj</a></th>
|
|
|
|
|
|
{assign var=x value=1}
|
|
{foreach from=$arrayVariables key=k item=ArrayItem name=array}
|
|
{assign var=tVariable value=$ArrayItem.variable}
|
|
<tr {if $x==1}{assign var=x value=0}{else}{assign var=x value=1}class="even"{/if}>
|
|
<td>{$smarty.foreach.array.index+1}</td>
|
|
<td>{$ArrayItem.variable}</td>
|
|
<td>{$ArrayItem.value}</td>
|
|
<td>{$ArrayItem.description}</td>
|
|
<td><a href="{url setup=edit variable=$tVariable}">edytuj</a></td>
|
|
</tr>
|
|
{/foreach}
|
|
|
|
|
|
</table>
|
|
{/dropDownContainer}
|
|
</div><!-- /paddedContent -->
|
|
</div><!-- /panelRightBody -->
|
|
<div class="panelRightBottom"></div> |