Project

General

Profile

« Previous | Next » 

Revision 73b01046

Added by Ohad Levy about 13 years ago

  • ID 73b0104645cb3a9a349ba47376d44d21140e51d3

fixes #876 - Improve puppet certificates pages

  • Add basic things like filtering based on state (pending, valid, revoked) sorting etc
  • Add support timestamps that were introduced in #873

View differences:

app/views/smart_proxies/puppetca/index.html.erb
<% title "Puppet certificates for #{@proxy}" %>
<div class="title_action">
<%= link_to "Autosign Entries", smart_proxy_autosign_index_path(@proxy) %>
<%= state_filter %>
</div>
<table class='list'>
<tr>
<th>Certificate Name</th>
<th>State</th>
<th>Valid from</th>
<th>Expires</th>
<th>Fingerprint</th>
<th></th>
</tr>
......
<tr class="<%= cycle("even", "odd") -%>">
<td><%= h cert.name %> </td>
<td><%= h cert.state %></td>
<td><%= time_column cert.valid_from %></td>
<td><%= time_column cert.expires_at, :tense => :future %></td>
<td><%= h cert.fingerprint %></td>
<td>
<%= link_to "Sign", smart_proxy_puppetca_path(@proxy.to_param, cert), :method => :put if cert.state == "pending" %>
<%= link_to "Destroy", smart_proxy_puppetca_path(@proxy.to_param, cert.name), :confirm => 'Are you sure?', :method => :delete %>
<%= link_to_if cert.state == "pending", "Sign", smart_proxy_puppetca_path(@proxy.to_param, cert), :method => :put %>
<%= link_to_if cert.state != "revoked", "Destroy", smart_proxy_puppetca_path(@proxy.to_param, cert.name), :confirm => 'Are you sure?', :method => :delete %>
</td>
</tr>
<% end -%>

Also available in: Unified diff