Sha256: 2558a71af5c49ad710b50ad6290590d29056f4da5bab2ffef9dcf705e4e98f6d
Contents?: true
Size: 1.16 KB
Versions: 1
Compression:
Stored size: 1.16 KB
Contents
<% title _("Registries") %> <%= title_actions(new_link(_("Create Registry"))) %> <table class="table table-bordered table-striped table-condensed" data-table="inline"> </thead> <tr> <th class="text-center"><%= sort :name, :as => _("Name") %></th> <th class="hidden-tablet hidden-xs text-center"><%= sort :url, :as => _("URL") %></th> <th class="hidden-tablet hidden-xs text-center"><%= _("Description") %></th> <th><%= _('Actions') %></th> </tr> </thead> <% @registries.each do |r| %> <tr> <td><%= link_to_if_authorized trunc_with_tooltip(r.name), hash_for_edit_registry_path(:id => r).merge(:auth_object => r, :authorizer => authorizer) %></td> <td class="hidden-tablet hidden-xs text-center"><%= trunc_with_tooltip(r.url) %></td> <td class="hidden-tablet hidden-xs text-center"><%= trunc_with_tooltip(r.description) %></td> <td><%= action_buttons( display_delete_if_authorized hash_for_registry_path(:id => r). merge(:auth_object => r, :authorizer => authorizer), :confirm => _("Delete %s?") % r.name) %></td> </tr> <% end %> </table> <%= will_paginate_with_info @registries %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
foreman_docker-3.1.0 | app/views/registries/index.html.erb |