You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
337 B
12 lines
337 B
<h1>Dashboard#index</h1>
|
|
<% Certificate.all.each do |cert| -%>
|
|
<p>Fingerprint: <%= cert.cert_fpr %>
|
|
Serial: <%= cert.cert.serial %></p>
|
|
<% end -%>
|
|
<hr/>
|
|
<% @hosts.each do |host| -%>
|
|
<p><%= host.lxd_config.inspect %></p>
|
|
<% host.lxd_certificates.each do |certificate| -%>
|
|
<p><%= certificate.fingerprint %></p>
|
|
<% end -%>
|
|
<% end -%>
|