first commit

This commit is contained in:
2026-04-24 15:32:21 +02:00
commit 20d40fead4
5046 changed files with 641038 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<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>