denny/ShinyCMS

View on GitHub
root/admin/pages/list_sections.tt

Summary

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

<table class="list">
    <tr>
        <th>
            Section
        </th>
        <th>
            Description
        </th>
        <th>
            Actions
        </th>
    </tr>
    [%- FOREACH section IN sections %]
    <tr class="showfocus">
        <td>
            [% section.name | html %]
        </td>
        <td>
            [% section.description | html %]
        </td>
        <td>
            <a class="action" href="[% c.uri_for( '/pages', section.url_name ) %]">View</a>
            <a class="action" href="[% c.uri_for( 'section', section.id, 'edit' ) %]">Edit</a>
        </td>
    </tr>
    [%- END %]
</table>