summaryrefslogtreecommitdiff
path: root/app/views/look/show.html.erb
blob: 2e0af81879d6766416e7fd30298c9ab099ffbfe4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<% if current_char.activity %>
  <h1 class="text-2xl"><%= current_char.activity.name %></h1>
  <p><%= current_char.activity.description %></p>

  <div class="min-w-full my-2 px-1 overflow-auto text-sm border-2 border-gray-800 rounded"
       style="height: 22rem;" id="result_output">
  </div>

  <div id="result_controls">
    <%= render "timer" %>
  </div>
<% else %>
  <p>You're not currently doing anything. Maybe you'd like to
    <%= link_to "go somewhere", locations_path %>?</p>
<% end %>