Sha256: cd3d5d5bfa37b2bb9fd773e29cd2e8ee5a0034d9f671e073bc3010f83609473d

Contents?: true

Size: 1.16 KB

Versions: 4

Compression:

Stored size: 1.16 KB

Contents

<?r if !@entries.empty? ?>

<table>
    <thead>
        <tr>
            <th>#{lang('section_entries.labels.id')}</th>
            <th>#{lang('section_entries.labels.title')}</th>
            <th>#{lang('section_entries.labels.slug')}</th>
            <th>#{lang('section_entries.labels.status')}</th>
            <th>#{lang('section_entries.labels.created_at')}</th>
        </tr>
    </thead>
    <tbody>
        <?r @entries.each do |entry| ?>
        <tr>
            <td>#{entry.id}</td>

            <td>
                #{if user_authorized?(:edit_section_entry)
                  edit_link(
                    Sections::Controller::SectionEntries.r(
                      :edit,
                      entry.section_id,
                      entry.id
                    ),
                    entry.title
                  )
                else
                  entry.title
                end}
            </td>

            <td>#{entry.slug}</td>
            <td>#{entry.status_name}</td>
            <td>#{format_date(entry.created_at)}</td>
        </tr>
        <?r end ?>
    </tbody>
</table>

<?r else ?>

<p>#{lang('section_entries.messages.no_entries')}</p>

<?r end ?>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
zen-0.4.3 lib/zen/package/sections/lib/sections/view/admin/section-entries/recent_entries.xhtml
zen-0.4.2 lib/zen/package/sections/lib/sections/view/admin/section-entries/recent_entries.xhtml
zen-0.4.1 lib/zen/package/sections/lib/sections/view/admin/section-entries/recent_entries.xhtml
zen-0.4 lib/zen/package/sections/lib/sections/view/admin/section-entries/recent_entries.xhtml