ChaelCodes/HuntersKeepers

View on GitHub
app/views/gears/show.html.erb

Summary

Maintainability
Test Coverage
<p id="notice"><%= notice %></p>

<p>
  <strong>Playbook:</strong>
  <%= link_to_playbook(@gear) %>
</p>

<p>
  <strong>Name:</strong>
  <%= @gear.name %>
</p>

<p>
  <strong>Description:</strong>
  <%= @gear.description %>
</p>

<% unless @gear.harm.nil? %>
  <p>
    <strong>Harm:</strong>
    <%= @gear.harm %>
  </p>
<% end %>

<% unless @gear.armor.nil? %>
  <p>
    <strong>Armor:</strong>
    <%= @gear.armor %>
  </p>
<% end %>

<p>
  <strong>Tags:</strong>
  <%= @gear.tag_list %>
</p>

<%=  show_page_buttons(@gear) %>