flatpress/admin/panels/static/admin.static.list.tpl
azett af1aa7759b Revert "Merge branch 'master' of https://github.com/flatpressblog/flatpress"
This reverts commit e9ad11742876f9f78d743a28afd547ee7480c7f9, reversing
changes made to f30fc6204a6bc7643d7952b1df98a3aa7b462dea.
2022-07-02 13:30:56 +02:00

54 lines
968 B
Smarty

<h2>{$panelstrings.head}</h2>
{include file='shared:errorlist.tpl'}
<p>{$panelstrings.descr}</p>
{static_block}
{html_form}
<table class="entrylist">
<thead><tr>{*<th>{$panelstrings.sel}</th>*}
<th>{$panelstrings.name}</th>
<th class="main-cell">{$panelstrings.title}</th>
<th>{$panelstrings.author}</th>
<th>{$panelstrings.action}</th></tr></thead>
<tbody>
{static}
<tr>
{*<td><input type="checkbox" /></td>*}
<td>{$id}</td>
<td class="main-cell">
<a class="link-general"
href="{$panel_url|action_link:write}&amp;page={$id}">
{$subject|truncate:70}
</a>
</td>
<td>{$author}</td>
<td>
<a class="link-general"
href="{$id|link:page_link}">
{$panelstrings.act_view}
</a>
<a
class="link-general"
href="{$panel_url|action_link:write}&amp;page={$id}">
{$panelstrings.act_edit}
</a>
<a class="link-delete"
href="{$panel_url|action_link:delete}&amp;page={$id}">
{$panelstrings.act_del}
</a>
</td>
</tr>
{/static}
</tbody></table>
{/html_form}
{/static_block}