This commit is contained in:
2026-05-15 18:33:51 +02:00
parent 3601be572f
commit c980004309
8442 changed files with 783630 additions and 1 deletions

View File

@@ -0,0 +1,32 @@
<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 class="addItemTable" href="{url setup=new}" title="Dodaj" >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 class="editItemTable" href="{url setup=edit variable=$tVariable}" title="Edytuj" >Edytuj</a>
</tr>
{/foreach}
</table>
{/dropDownContainer}
</div><!-- /paddedContent -->
</div><!-- /panelRightBody -->
<div class="panelRightBottom"></div>