Files
old-holivud2/app/views/projects/index.html.erb

18 lines
821 B
Plaintext
Raw Normal View History

2020-05-31 22:38:19 +02:00
<% if @projects.any? %>
<section class="container mt-5">
2020-08-20 06:50:51 +02:00
<div class="d-flex flex-row justify-content-between align-items-center mb-3">
<h1 class="h3"><%= t(".heading") %> (<%= @projects.size %>)</h1>
<%= bootstrap_form_with url: [@account, :projects], method: :get, remote: true, layout: :inline, id: "search" do |form| %>
<%= form.search_field :query, hide_label: true, placeholder: t(".actions.search"), class: "rounded-pill-right", value: params[:query], prepend: form.button(fa_icon("search"), class: "btn btn-light border rounded-pill-left") %>
2020-05-31 22:38:19 +02:00
<% end %>
2020-08-20 06:50:51 +02:00
</div>
<ul id="projects" class="list-unstyled mt-2 row">
<%= render partial: "new_project_button" %>
2020-05-31 22:38:19 +02:00
<%= render @projects %>
</ul>
</section>
<% else %>
<%= render "empty_projects" %>
<% end %>