Files
nairobi/app/views/proposals/created.html.erb
Javi Martín 94d4e1db1e Use render template: instead of render file:
We did a similar change in commit 47925fbab, and we were getting a
warning in Rails 6.0:

DEPRECATION WARNING: render file: should be given the absolute path to a
file

Since using `render file:` would ignore views in custom folders, we're
using `render template:` instead.
2022-03-21 20:43:50 +01:00

31 lines
939 B
Plaintext

<div class="jumbo light">
<div id="<%= dom_id(@proposal) %>" class="row">
<div class="small-12 column">
<h2><%= t("proposals.created.title") %></h2>
<p><%= t("proposals.created.motivation") %></p>
<p><%= sanitize(t("proposals.created.motivation_2")) %></p>
<% if can?(:dashboard, @proposal) %>
<%= link_to t("proposals.created.dashboard"),
progress_proposal_dashboard_path(@proposal),
class: "button" %>
<% end %>
<% if can?(:publish, @proposal) %>
<%= link_to t("proposals.created.publish"),
publish_proposal_path(@proposal),
method: :patch, class: "button" %>
<% end %>
</div>
</div>
</div>
<div class="row">
<div class="small-12 column">
<h3><%= t("proposals.created.preview_title") %></h3>
</div>
</div>
<%= render template: "proposals/show", locals: { preview: true } %>