intercity/intercity-next

View on GitHub
app/views/apps/index.html.erb

Summary

Maintainability
Test Coverage
<%= render "servers/heading", server: @server, tab: "apps" %>
<div class="apps">
  <% @apps.each_slice(3).each do |apps| %>
    <div class="columns">
      <%= render apps %>
    </div>
  <% end %>
  <div class="add-app">
      <%= link_to "#{icon "plus"} New app".html_safe, new_server_app_path(@server),
        data: { behaviour: "new-app" }, class: "button is-success is-large" %>
  </div>
</div>