Files
runosaari.net/lib/runosaari_web/templates/location/admin.html.eex
codevictory cebe145c32 Admin pages.
2021-04-22 21:00:55 +03:00

35 lines
975 B
Elixir

<h1>Tapahtumapaikat - HALLINTA</h1>
<table>
<thead>
<tr>
<th>Name</th>
<th>Address</th>
<th>Reserved seats</th>
<th>Max seats</th>
<th>Description</th>
<th></th>
</tr>
</thead>
<tbody>
<%= for location <- @locations do %>
<tr>
<td><%= location.name %></td>
<td><%= location.address %></td>
<td><%= location.reserved_seats %></td>
<td><%= location.max_seats %></td>
<td><%= location.description %></td>
<td>
<span><%= link "Show", to: Routes.location_path(@conn, :show, location) %></span>
<span><%= link "Edit", to: Routes.admin_location_path(@conn, :edit, location) %></span>
<span><%= link "Delete", to: Routes.admin_location_path(@conn, :delete, location), method: :delete, data: [confirm: "Are you sure?"] %></span>
</td>
</tr>
<% end %>
</tbody>
</table>
<span><%= link "New Location", to: Routes.admin_location_path(@conn, :new) %></span>