Adds an entry inside moderation section that allows moderators to check pending tasks and mark them as solved.
13 lines
517 B
Plaintext
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 %>
|