denny/ShinyCMS

View on GitHub
root/admin/shop/list_product_types.tt

Summary

Maintainability
Test Coverage
[%-    meta.title = 'Product Types' -%]

<table class="list">
    <tr>
        <th class="main">
            Product Type
        </th>
        <th>
            Actions
        </th>
    </tr>
    [%- FOREACH product_type IN product_types %]
    <tr class="showfocus">
        <td>
            [% product_type.name | html %]
        </td>
        <td>
            <a class="action" href="[% c.uri_for( 'product-type', product_type.id, 'edit' ) %]">Edit</a>
        </td>
    </tr>
    [%- END %]
</table>