artist commentary form: add partial_commentary checkbox.

Add a checkbox for adding/removing the partial_commentary tag in the
artist commentary form.

ref: https://danbooru.donmai.us/forum_topics/15101.
This commit is contained in:
evazion
2018-04-29 22:05:59 -05:00
parent 21431892e8
commit 7e99a1b38b
3 changed files with 28 additions and 4 deletions

View File

@@ -80,4 +80,20 @@
</label>
</div>
<% end %>
<% if post.has_tag?("partial_commentary") %>
<div class="input">
<label>
<%= check_box :artist_commentary, :remove_partial_commentary_tag %>
Remove <em>partial_commentary</em> tag
</label>
</div>
<% else %>
<div class="input">
<label>
<%= check_box :artist_commentary, :add_partial_commentary_tag %>
Add <em>partial_commentary</em> tag
</label>
</div>
<% end %>
<% end %>