Remove unused location view logic.

This commit is contained in:
codevictory
2021-04-22 21:52:02 +03:00
parent fff627fb53
commit 4fb333e6d0
10 changed files with 0 additions and 297 deletions

View File

@@ -1,34 +0,0 @@
<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>

View File

@@ -1,5 +0,0 @@
<h1>Edit Location</h1>
<%= render "form.html", Map.put(assigns, :action, Routes.admin_location_path(@conn, :update, @location)) %>
<span><%= link "Back", to: Routes.location_path(@conn, :index) %></span>

View File

@@ -1,31 +0,0 @@
<%= form_for @changeset, @action, fn f -> %>
<%= if @changeset.action do %>
<div class="alert alert-danger">
<p>Oops, something went wrong! Please check the errors below.</p>
</div>
<% end %>
<%= label f, :name %>
<%= text_input f, :name %>
<%= error_tag f, :name %>
<%= label f, :address %>
<%= text_input f, :address %>
<%= error_tag f, :address %>
<%= label f, :reserved_seats %>
<%= number_input f, :reserved_seats %>
<%= error_tag f, :reserved_seats %>
<%= label f, :max_seats %>
<%= number_input f, :max_seats %>
<%= error_tag f, :max_seats %>
<%= label f, :description %>
<%= text_input f, :description %>
<%= error_tag f, :description %>
<div>
<%= submit "Save" %>
</div>
<% end %>

View File

@@ -1,28 +0,0 @@
<h1>Listing Locations</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>
</tr>
<% end %>
</tbody>
</table>
<span><%= link "Hallinta", to: Routes.admin_location_path(@conn, :admin) %></span>

View File

@@ -1,5 +0,0 @@
<h1>New Location</h1>
<%= render "form.html", Map.put(assigns, :action, Routes.admin_location_path(@conn, :create)) %>
<span><%= link "Back", to: Routes.location_path(@conn, :index) %></span>

View File

@@ -1,33 +0,0 @@
<h1>Show Location</h1>
<ul>
<li>
<strong>Name:</strong>
<%= @location.name %>
</li>
<li>
<strong>Address:</strong>
<%= @location.address %>
</li>
<li>
<strong>Reserved seats:</strong>
<%= @location.reserved_seats %>
</li>
<li>
<strong>Max seats:</strong>
<%= @location.max_seats %>
</li>
<li>
<strong>Description:</strong>
<%= @location.description %>
</li>
</ul>
<span><%= link "Edit", to: Routes.admin_location_path(@conn, :edit, @location) %></span>
<span><%= link "Back", to: Routes.location_path(@conn, :index) %></span>