Sha256: af13937035d890839d4ba3e190504be123f02618d5b419fee70b3d209a6daac3
Contents?: true
Size: 1.18 KB
Versions: 46
Compression:
Stored size: 1.18 KB
Contents
<div class="page-description"> <h2><%= t('qa_server.authority_list.title') %></h2> <p><%= t('qa_server.authority_list.see_check_status_html', href: "#{main_app.root_path}check_status") %></p> <div id="status-section" class="status-section"> <table class="status"> <tr> <th><%= t('qa_server.authority_list.data.subauthority') %></th> <th><%= t('qa_server.authority_list.data.service') %></th> <th><%= t('qa_server.authority_list.data.action') %></th> <th><%= t('qa_server.authority_list.data.url') %></th> </tr> <% current_authority = nil %> <% @presenter.urls_data.each do |entry| %> <% unless entry[:authority_name] == current_authority %> <% current_authority = entry[:authority_name] %> <tr> <td class="table_subheading" colspan="4"><%= current_authority %></td> </tr> <% end %> <tr> <td><%= entry[:subauthority_name] %></td> <td><%= entry[:service] %></td> <td><%= entry[:action] %></td> <td><a href="<%= entry[:url] %>"><%= entry[:url] %></a></td> </tr> <% end %> </table> </div> </div>
Version data entries
46 entries across 46 versions & 1 rubygems