Files
grecia/app/views/proposals/edit.html.erb
Javi Martín b162ad512a Remove row and column divs in debate/proposal form
We don't need any row classes anymore because the <body> already has a
maximum width. As for columns, we only have one column in this form, so
we don't need them either. Besides, the form's parent element already
has a padding.
2021-07-13 15:27:13 +02:00

15 lines
316 B
Plaintext

<div class="proposal-edit">
<div class="small-12 column">
<%= back_link_to %>
<div class="float-right">
<%= link_to t("proposals.edit.show_link"), @proposal %>
</div>
<h1><%= t("proposals.edit.editing") %></h1>
<%= render "form", form_url: proposal_path(@proposal) %>
</div>
</div>