summaryrefslogtreecommitdiff
path: root/app/views/monsters/show.html.erb
blob: 9c4dfeb77fd536c2f01f9503b8555906b800c88b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<h1 class="text-3xl mb-2"><%= @monster.name %></h1>
<p class="italic"><%= @monster.description %></p>

<div class="my-6">
  <h2 class="text-xl">Game Data</h2>
  <p>GID: <span class="text-code"><%= @monster.gid %></span></p>
  <% if @monster.whatnot %>
    <div class="text-code my-2"><%= JSON.pretty_generate(@monster.whatnot) %></div>
  <% else %>
    <p>Monster has no additional data.</p>
  <% end %>
</div>