| <%= check_box_tag "location_release_ids[]", location_release.id, false %> |
<% if location_release.approved? %>
<% tooltip_user_data = get_approval_data_for_releasable(location_release) %>
<% end %>
|
<% if location_release.photo.attached? %>
<%= image_tag medium_variant(location_release.photo), class: "img-fluid" %>
<% else %>
<%= fa_icon("warning", text: t(".no_photos"), class: "text-danger") %>
<% end %>
|
<%= contact_info(name: location_release.name, address: location_release.address) %>
|
<%= contact_info_for(location_release.contact_person) %>
|
<%= notes_preview location_release.notes.order_by_recent %>
|
">
<%= tags_preview location_release, location_release.tags %>
|
<%= location_release.signed_on %>
|
<% if location_release.amendment_signed? %>
<% elsif location_release.amendment_signable? %>
<% end %>
|
<%= button_tag t(".actions.manage"), class: "btn btn-light btn-sm dropdown-toggle border", data: { toggle: "dropdown", boundary: "window" }, aria: { haspopup: true, expanded: false } %>
|