blob: 688758629ab42f47e3582c36cf64e451f2e1eab4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<% content_for :title, "Editing bed #{@bed.location}" %>
<h1 class="display-1">Editing bed <%= @bed.location %></h1>
<%= render "form", bed: @bed %>
<br>
<div>
<%= link_to "Back to beds", beds_path, class: "btn btn-secondary" %>
</div>
|