summaryrefslogtreecommitdiff
path: root/app/views/characters/spells/index.html.erb
blob: 5f415a3b55724c3079bb9fa65be40f74586075ea (plain)
1
2
3
4
5
6
7
8
9
10
<h2 class="text-3xl mb-2">Spells</h2>
<div data-controller="activity-select">
  <%= form_with url: start_activity_path, method: :post do |f| %>
    <%= f.select :id, @spell_activities.map { |a| [a.name, a.id] }, {},
                 { data: { activity_select_target: "select", action: "activity-select#load" } } %>
    <%= f.number_field :actions, value: 1, size: 5, min: 1, max: 2_000_000_000 %>
    <%= f.submit "Cast" %>
  <% end %>
  <div data-activity-select-target="output" class="my-1"></div>
</div>