37 lines
1.2 KiB
Plaintext
37 lines
1.2 KiB
Plaintext
<%= product_wordmark :cast_me, class: "small mb-3" %>
|
|
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="d-md-flex d-sm-flex flex-sm-column flex-md-row flex-md-wrap mb-3">
|
|
<% if policy(CastingCall).new? %>
|
|
<%= link_to fa_icon("plus", text: t(".actions.new")), [:new, @project, :casting_call], class: "btn btn-primary mb-2" %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="border bg-white rounded shadow-sm pb-3 table-responsive">
|
|
<table class="table table-striped tr-px-4 align-all-middle">
|
|
<thead class="thead-light">
|
|
<tr>
|
|
<th><%= t(".table_headers.casting_call_created_on") %></th>
|
|
<th><%= t(".table_headers.casting_call_title") %></th>
|
|
<th><%= t(".table_headers.casting_call_status") %></th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="casting_calls">
|
|
<% if @casting_calls.any? %>
|
|
<%= render @casting_calls %>
|
|
<% else %>
|
|
<tr>
|
|
<td colspan="20" class="py-4 text-center text-muted"><%= t(".empty") %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div id="casting_calls_pagination" class="mt-3">
|
|
<%= will_paginate @casting_calls %>
|
|
</div> |