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

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