blob: f5ae417938ea78acfef3537cd4b13cd27012999c (
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: 30rem;" 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 %>
|