Project

General

Profile

Download (875 Bytes) Statistics
| Branch: | Tag: | Revision:
<% title _("Manage Bookmarks") %>
<div class="title_action"></div>

<table class="table table-bordered table-striped table-two-pane">
<tr>
<th><%= s_("Bookmark|Name") %></th>
<th><%= s_("Bookmark|Query") %></th>
<th><%= s_("Bookmark|Controller") %></th>
<th><%= s_("Bookmark|Public") %></th>
<th></th>
</tr>
<% for bookmark in @bookmarks %>
<tr>
<td><%= link_to_if_authorized(h(bookmark.name), hash_for_edit_bookmark_path(:id => bookmark)) %></td>
<td><%=h bookmark.query %></td>
<td><%=h bookmark.controller %></td>
<td><%=h bookmark.public %></td>
<td align="right">
<%= display_delete_if_authorized hash_for_bookmark_path(:id => bookmark.name), :confirm => _("Delete %s?") % bookmark.name %>
</td>
</tr>
<% end %>
</table>
<%= page_entries_info @bookmarks %>
<%= will_paginate @bookmarks %>
(4-4/6)