Files
runosaari.net/lib/runosaari_web/templates/performance/index.html.eex
2021-04-25 00:55:26 +03:00

21 lines
376 B
Elixir

<h1>Ohjelma</h1>
<table>
<thead>
<tr>
<th>Nimi</th>
<th>Seloste</th>
</tr>
</thead>
<tbody>
<%= for performance <- @performances do %>
<tr>
<td><%= performance.name %></td>
<td><%= performance.desc %></td>
</tr>
<% end %>
</tbody>
</table>
<span><%= link "Hallinta", to: Routes.admin_performance_path(@conn, :admin) %></span>