Sha256: 08401710dfc15fd2d8983905e81d8ee0238fef0f8c4dcf6d35c524ce4c3a10f5
Contents?: true
Size: 782 Bytes
Versions: 9
Compression:
Stored size: 782 Bytes
Contents
<p><strong><%= link_to "Add New Page", new_admin_page_path %></strong></p> <div style="padding-top: 30px; padding-bottom: 30px;"> <table width="700" border="0" cellspacing="10" cellpadding="0"> <tr> <th>Title</th> <th>Permalink</th> <th>Content</th> <th> </th> <th> </th> </tr> <% for page in @pages %> <tr> <td width="300" style="font-weight: bold;"><%= page.title %></td> <td width="300"><%= page.permalink %></td> <td width="30"><%= link_to "Show", admin_page_path(page) %></td> <td width="30"><%= link_to "Edit", edit_admin_page_path(page) %></td> <td width="30"><%= link_to "Delete", admin_page_path(page), :confirm => 'Are you sure?', :method => :delete %></td> </tr> <% end %> </table> </div>
Version data entries
9 entries across 9 versions & 1 rubygems