Subversion-Projekte lars-tiefland.ci

Revision

Revision 1945 | Revision 1964 | Zur aktuellen Revision | Blame | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed

{include file="header.tpl"}
<!-- $Id: herstellerkatalog.tpl 1946 2017-01-06 20:01:52Z lars $ BEGIN -->
<script>
        $(function(){
                $(".del_hst").button({
                        icons:{
                                primary:"ui-icon-trash"
                        }
                }).css("cursor","pointer");
                $(".edit_hst").button({
                        icons:{
                                primary:"ui-icon-pencil"
                        }
                }).css("cursor","pointer");
        })
</script>
<table style="width:100%">
        <tr>
                <th>Name</th>
                <th style="width:210px">Aktionen</th>
        </tr>
        {foreach $hersteller as $hst}
        <tr>
                <td>
                        {$hst.name}
                </td>
                <td>
                        <a class="edit_hst" data-id="{$hst.id}">ändern</a>
                        <a class="del_hst" data-id="{$hst.id}" data-name="{$hst.name}">löschen</a>
                </td>
        </tr>
        {/foreach}
</table>
<!-- $Id: herstellerkatalog.tpl 1946 2017-01-06 20:01:52Z lars $ END -->
{include file="footer.tpl"}