Project

General

Profile

Download (1.47 KB) Statistics
| Branch: | Tag: | Revision:
<% title _("PuppetCA on %s") % @proxy.name %>
<% search_bar _("Filter by state: %s") % state_filter %>
<% title_actions display_link_if_authorized(_("Autosign Entries"), hash_for_smart_proxy_autosign_index_path(:smart_proxy_id => @proxy)) %>
<table class='<%= table_css_classes %>'>
<thead>
<tr>
<th><%= _("Certificate Name") %></th>
<th><%= _("State") %></th>
<th><%= _("Valid from") %></th>
<th><%= _("Expires") %></th>
<th><%= _("Fingerprint") %></th>
<th></th>
</tr>
</thead>
<tbody>
<% @certificates.each do |cert| %>
<tr>
<td><%= cert.name %>
</td>
<td><%= _(cert.state) %></td>
<td><%= time_column cert.valid_from %></td>
<td><%= time_column cert.expires_at, :tense => :future %></td>
<td><%= cert.fingerprint %></td>
<td>
<%= action_buttons(
if cert.state == "pending"
display_link_if_authorized(_("Sign"), hash_for_smart_proxy_puppetca_path(:smart_proxy_id => @proxy.to_param, :id => cert, :state => params[:state]), :method => :put)
end,
if cert.state != "revoked"
display_delete_if_authorized(hash_for_smart_proxy_puppetca_path(:smart_proxy_id => @proxy.to_param, :id => cert, :class => 'delete', :state => params[:state]))
end)
%>
</td>
</tr>
<% end %>
</tbody>
</table>
<%= will_paginate_with_info @certificates %>
    (1-1/1)