noesya/osuny

View on GitHub
app/views/server/overrides/show.html.erb

Summary

Maintainability
Test Coverage
<%= content_for :title, @path %>

<div class="table-responsive">
  <table class="<%= table_classes %>">
    <thead>
      <tr>
        <th><%= Communication::Website.model_name.human %></th>
        <th><%= Communication::Website.human_attribute_name('url') %></th>
        <th><%= Communication::Website::GitFile::Layout.model_name.human %></th>
      </tr>
    </thead>
    <tbody>
      <% @layouts.each do |layout| %>
        <tr>
          <td><%= link_to layout.website, server_website_path(layout.website) %></td>
          <td><%= link_to layout.website.url, layout.website.url, target: :_blank %></td>
          <td><%= link_to layout.git_url, layout.git_url, target: :_blank %></td>
        </tr>
      <% end %>
    </tbody>
  </table>
</div>