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

19 lines
362 B
Elixir

<h1>Show Performance</h1>
<ul>
<li>
<strong>Time:</strong>
<%= @performance.name %>
</li>
<li>
<strong>Description:</strong>
<%= @performance.desc %>
</li>
</ul>
<span><%= link "Edit", to: Routes.admin_performance_path(@conn, :edit, @performance) %></span>
<span><%= link "Back", to: Routes.performance_path(@conn, :index) %></span>