Remove locations.
This commit is contained in:
@@ -16,8 +16,8 @@
|
||||
<header >
|
||||
<nav class="nav" role="navigation">
|
||||
<%= link "Etusivu", to: Routes.page_path(@conn, :index) %>
|
||||
<%= link "Esiintyjät", to: Routes.performer_path(@conn, :index) %>
|
||||
<%= link "Ohjelma", to: Routes.performance_path(@conn, :index) %>
|
||||
<%= link "Esiintyjät", to: Routes.performer_path(@conn, :index) %>
|
||||
<%= link "Info", to: Routes.page_path(@conn, :info) %>
|
||||
<%= link "Covid-19", to: Routes.page_path(@conn, :covid19) %>
|
||||
<%= link "Ilmoittautuminen", to: Routes.admin_performer_path(@conn, :new) %>
|
||||
|
||||
@@ -9,10 +9,6 @@
|
||||
<%= datetime_select f, :time %>
|
||||
<%= error_tag f, :time %>
|
||||
|
||||
<%= label f, :location_id %>
|
||||
<%= select f, :location_id, Runosaari.Area.list_locations |> Enum.map(fn loc -> {loc.name, loc.id} end)%>
|
||||
<%= error_tag f, :location_id %>
|
||||
|
||||
<%= label f, :performer_id %>
|
||||
<%= multiple_select f, :performer_id, Runosaari.Registration.list_performers |> Enum.map(fn perf -> {perf.fname <> " " <> perf.lname, perf.id} end) %>
|
||||
<%= error_tag f, :performer_id %>
|
||||
|
||||
Reference in New Issue
Block a user