51 lines
2.2 KiB
Smarty
51 lines
2.2 KiB
Smarty
{dropDownContainer title="Lista"}
|
|
<table width="100%" class="datagrid" cellpadding="4" cellspacing="1" border="0">
|
|
<tr>
|
|
<th>tytuł</th>
|
|
<th>data utworzenia</th>
|
|
<th>publikacja</th>
|
|
{* <th>opis</th>*}
|
|
{*<th>Polecany</th>*}
|
|
<th width="60">
|
|
<a href="{url File=Add}" {if isset($add)}onclick="alert('Aby dodać wpis, proszę zapisać element struktury'); return false;" {/if}><img src="{$urlStatic}/image/Admin/iconAdd.gif" alt="Dodaj" title="Dodaj" border="0"/></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->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;" nowrap>
|
|
<a href="{url File=Edit idFile=$obj->GetId()}" class="edit">edytuj</a> |
|
|
<a href="{url Client=File idFile=$obj->GetId()}" class="linked" title="Zobacz podlinkowanych klientów">zobacz</a> |
|
|
<a href="{url File=Delete idFile=$obj->GetId()}" onclick="{literal}if (confirm('Czy napewno usunąć ten element?')) { } else {return false;}{/literal}"class="delete">usuń</a>
|
|
</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} |