<%= simple_form_for [:dashboard, @post] do |f| %> <%= f.error_notification %> <%= f.input :title, autofocus: true %> <%= f.input :excerpt %> <%= f.input :draft_content, as: :text, input_html: { rows: 20, class: "wysiwyg" }, label: "Content" %> <%= f.input :tag_list %> <% if Pundit.policy(current_user, @post).publish? %>
<% end %>
<%= f.submit class: "btn btn-primary" %>
<% end %> <%= render "storytime/dashboard/media/modal" %>