Sha256: 1a05ed9ade8234c585eeae34ba2cc875b688f2a6efdbce85013f5afef436137e

Contents?: true

Size: 865 Bytes

Versions: 5

Compression:

Stored size: 865 Bytes

Contents

<% title _("Manage Bookmarks") %>
<div class="title_action"></div>

<table class="table table-bordered table-striped">
  <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.name)) %></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 %>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
foreman_discovery-1.0.0 test/foreman_app/app/views/bookmarks/index.html.erb
foreman_discovery-1.0.0.rc4 test/foreman_app/app/views/bookmarks/index.html.erb
foreman_discovery-1.0.0.rc3 test/foreman_app/app/views/bookmarks/index.html.erb
foreman_discovery-1.0.0.rc2 test/foreman_app/app/views/bookmarks/index.html.erb
foreman_discovery-1.0.0.rc1 test/foreman_app/app/views/bookmarks/index.html.erb