21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-05-18 08:28:39 +02:00
chexpire/app/views/checks/index.html.erb
2018-05-30 16:58:30 +02:00

15 lines
434 B
Plaintext

<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-lg-10">
<% if @checks.empty? %>
<div class="alert alert-info">
<%= t(".no_check_yet_html", new_domain_path: new_check_path, new_ssl_path: new_check_path) %>
</div>
<% else %>
<h1>List of your checks</h1>
<%= render "table", checks: @checks %>
<% end %>
</div>
</div>
</div>