Project

General

Profile

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

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