Sha256: 66e8504bc3060f79237135b7142773185eaa0cbc6ce21ea6467fd8c009bd2969
Contents?: true
Size: 1.36 KB
Versions: 11
Compression:
Stored size: 1.36 KB
Contents
<% blazer_title "Checks" %> <p style="float: right;"><%= link_to "New Check", new_check_path, class: "btn btn-info" %></p> <%= render partial: "blazer/nav" %> <table class="table"> <thead> <tr> <th>Query</th> <th style="width: 10%;">State</th> <th style="width: 10%;">Run</th> <th style="width: 20%;">Emails</th> <th style="width: 15%;"></th> </tr> </thead> <tbody> <% @checks.each do |check| %> <tr> <td><%= link_to check.query.name, check.query %> <span class="text-muted"><%= check.try(:check_type).to_s.gsub("_", " ") %></span></td> <td> <% if check.state %> <small class="check-state <%= check.state.parameterize.gsub("-", "_") %>"><%= check.state.upcase %></small> <% end %> </td> <td><%= check.schedule if check.respond_to?(:schedule) %></td> <td> <ul class="list-unstyled" style="margin-bottom: 0; word-break: break-all;"> <% check.split_emails.each do |email| %> <li><%= email %></li> <% end %> </ul> </td> <td style="text-align: right; padding: 1px;"> <%= link_to "Edit", edit_check_path(check), class: "btn btn-info" %> <%= link_to "Run Now", query_path(check.query), class: "btn btn-primary" %> </td> </tr> <% end %> </tbody> </table>
Version data entries
11 entries across 11 versions & 2 rubygems