bus_booking/app/views/admin/bus_bookings/show.html.erb

24 lines
860 B
Plaintext

<div class="content-holder">
<h2><%= t("bus_booking.booking_details_for") %> <%= @bus.bus_route %></h2>
<table class="table table-striped table-bordered">
<thead>
<th><%= t("bus_booking.registered_date") %></th>
<th><%= t("bus_booking.email") %></th>
<th><%= t("bus_booking.name") %></th>
<th><%= t("bus_booking.department") %></th>
<th><%= t("bus_booking.dorm_number") %></th>
</thead>
<tbody>
<% @bus.bookings.each do |booking| %>
<tr>
<td><%= booking.created_at.strftime("%Y/%m/%d") %></td>
<td><%= booking.email %></td>
<td><%= booking.name %></td>
<td><%= booking.department %></td>
<td><%= booking.dorm_number %></td>
</tr>
<% end %>
</tbody>
</table>
<a href="<%= admin_bus_booking_export_path(@bus, :format => "xlsx") %>" class="btn btn-info pull-right"><%= t("bus_booking.export") %></a>
</div>