<%= t(".page_title.#{@item_type}") %>
<%= t(".page_description.#{@item_type}") %>
<% if @item.is_a?(Tag) %>
<%= link_to @item.name, tag_path(@item) %> (<%= @item.type %>)
<% elsif @item.is_a?(Work) %>
<%= render "works/work_blurb", work: @item %>
<% end %>
<%= form_tag troubleshooting_path, method: "patch" do %>
<%= collection_check_boxes "", :actions, @allowed_actions, :to_s, :to_s do |builder| %>
-
<%= builder.label do %>
<%= builder.check_box %>
<%= t(".#{builder.text}.title") %>
<% end %>
-
<%= t(".#{builder.text}.description") %>
<% end %>
-
<%= submit_tag "Troubleshoot" %>
<% end %>