Files
zurawik.pl/Admin/template/partial/File/IndexStructure.tpl
2026-05-15 18:33:51 +02:00

54 lines
2.6 KiB
Smarty

{dropDownContainer title=$moduleName|default:"Lista" icon=$moduleBoxConfg['files'] moduleBoxId=$moduleBoxId publish=$param.modulePublication}
<table width="100%" class="datagrid" cellpadding="4" cellspacing="1" border="0">
<tr>
<th>id</th>
<th>tytuł</th>
<th>data utworzenia</th>
<th>publikacja</th>
{* <th>opis</th>*}
{*<th>Polecany</th>*}
<th style="width: 40px; text-align: center;" >
<a class="optionIcon iconAdd" title="EdDodajytuj" href="{url File=Add}" {if isset($add)}onclick="alert('Aby dodać wpis, proszę zapisać element struktury'); return false;" {/if}>&nbsp;</a>
</th>
</tr>
{if !isset($add)}
{assign var=x value=1}
{foreach from=$arrayObj item=obj name=obj}
<tr {if $x==1}{assign var=x value=0}{else}{assign var=x value=1}class="even"{/if}>
<td>{$obj->GetId()}</td>
<td>{$obj->GetTitle()}</td>
<td>{$obj->GetDate()}</td>
<td>{if $obj->GetPublication()}p*{/if}</td>
{* <td>{$obj->GetDescription()|strip_tags}</td>*}
{*<td id="special_info_{$obj->GetId()}" onclick="Special('{$obj->GetId()}', document.getElementById('special_{$obj->GetId()}').value, '{url File=special}'); return false;"> <a href="#" title="zmień">{$obj->GetSpecial()|replace:"0":"Nie"|replace:"1":"Tak" }</a> </td>*}
<td style="text-align: center;">
<a class="optionIcon iconEdit" title="Edytuj" href="{url File=Edit idFile=$obj->GetId() idElement=$idElement}">&nbsp;</a>
{if $admin->GetRole() != 'moderator'}
<a class="optionIcon iconDelete" title="Usuń" href="{url File=Delete idFile=$obj->GetId() idElement=$idElement}" onclick="{literal}if (ConfirmAction('Czy napewno usunęć ten element?', '{/literal}{url File=Delete idFile=$obj->GetId() idElement=$idElement}{literal}')) { } else {return false;}{/literal}">&nbsp;</a>
{/if}
</td>
</tr>
{if $smarty.foreach.obj.last}
<tr>
<td colspan="10" align="center" >
<div class="paging">
{insertPagination}
</div>
</td>
</tr>
{/if}
{foreachelse}
{if !isset($searchString) || $searchString == ""}
<tr>
<td colspan="5" style="text-align: center;">Brak zdefiniowanych artykułów. <br/> Aby dodać kliknij link 'dodaj'.</td>
</tr>
{/if}
{/foreach}
{else}
<tr>
<td colspan="5" style="text-align: center;">Aby dodać wpis, proszę zapisać element struktury.</td>
</tr>
{/if}
</table>
{/dropDownContainer}