Files
nairobi/app/views/proposals_dashboard/_form.html.erb
Juan Salvador Pérez García 33b3431c70 Implements #150
Adds an entry inside moderation section that allows moderators to check
pending tasks and mark them as solved.
2018-07-17 17:52:47 +02:00

13 lines
517 B
Plaintext

<%= form_for @proposal_executed_dashboard_action,
url: create_request_proposal_dashboard_url(proposal, proposal_dashboard_action) do |f| %>
<%= render 'shared/errors', resource: @proposal_executed_dashboard_action %>
<div class="ckeditor small-12 column">
<%= f.label :comments %>
<%= f.cktext_area :comments, ckeditor: { language: I18n.locale }, label: false %>
</div>
<div class="actions small-12 column">
<%= f.submit(class: 'button', value: t('.request')) %>
</div>
<% end %>