<% if hiring_form?(@tag, @article) %>
<%= render 'articles/hiring_form', f:f %>
<% else %>
<% if current_user.organization %>
Publish under the <%= current_user.organization.name %> organization?
<%= f.check_box :publish_under_org, {checked: @article.organization_id.present?} %>
<% end %>
<% if @tag && @tag.submission_rules_headsup.present? %>
<%= @tag.submission_rules_headsup.html_safe %>
<% end %>
<% end %>
<%= f.text_area :body_markdown %>
<% if hiring_form?(@tag, @article) %>
<% if current_user.organization %>
Publish under the <%= current_user.organization.name %> organization account?
<% end %>
<%= f.submit 'SAVE AS DRAFT', name: "submit_button", class: "draft-version" %>
<%= f.submit 'PUBLISH', name: "submit_button" %>
<% end %>