Subversion-Projekte lars-tiefland.ci

Revision

Revision 1292 | Blame | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed

{include file="header.tpl"}
{assign var=col_span value=$languages|@count}
{assign var=col_span value=$col_span+2}
{assign var=col_width value=100/$col_span}
<table width="1000" cellpadding="0" cellspacing="0">
        <tr>
                <td class="links">
                        <h1>Liste der gespeicherten Einträge</h1>
                </td>
        </tr>
        <tr>
                <td valign="top">
                        <table width="900" cellpadding="0" cellspacing="0">
                                <tr>
                                        <td class="links" valign="top">String</td>
                                        <td>&nbsp;</td>
                                        <td class="rechts" valign="top">Gruppe</td>
                                        {section loop=$languages name=l_ind}
                                        <td>&nbsp;</td>
                                        <td class="rechts" valign="top">
                                                {$languages[l_ind].name}
                                                <form action="{$SCRIPT_NAME}" method="post" onsubmit="return check_del_lang('{$languages[l_ind].name}');" style="display:inline">
                                                        <input type="hidden" name="lang" value="{$languages[l_ind].id}">
                                                        <input type="hidden" name="mode" value="del_lang">
                                                        <input type="image" src="../images/navigation/trashcan.gif">
                                                </form>
                                        </td>
                                        {/section}
                                </tr>
                                {foreach from=$entries item=entry}
                                <tr>
                                        <td class="links" valign="top">
                                                <a href="{$SCRIPT_NAME}?action=edit&id={$entry.id}&page={$entry.page}">{$entry.id}</a>
                                                <form action="{$SCRIPT_NAME}" method="post" onsubmit="return check_del_entry('{$entry.id}');" style="display:inline">
                                                        <input type="hidden" name="id" value="{$entry.id}">
                                                        <input type="hidden" name="page" value="{$entry.page}">
                                                        <input type="hidden" name="mode" value="del">
                                                        <input type="image" src="../images/navigation/trashcan.gif">
                                                </form>
                                        </td>
                                        <td>&nbsp;</td>
                                        <td class="rechts" valign="top">{$entry.page}</td>
                                        {section loop=$languages name=l_ind}
                                        <td>&nbsp;</td>
                                        <td class="rechts" valign="top">
                                                {assign var=key value=$languages[l_ind].lang_id}
                                                {$entry[$key].string}
                                        </td>
                                        {/section}
                                </tr>
                                {/foreach}
                        </table>
                </td>
        </tr>
</table>
{include file="footer.tpl"}