<%= link_to game_boards_path(@game), class: "text-gray-500 hover:text-gray-700" do %> 掲示板一覧に戻る <% end %>

新しい交渉用掲示板を作成

交渉したい相手(国)を選択してください。選択した相手とあなただけの秘密の掲示板が作成されます。

<%= form_with model: [@game, @board], local: true, class: "space-y-6" do |f| %> <% if @board.errors.any? %>

入力内容にエラーがあります

    <% @board.errors.full_messages.each do |message| %>
  • <%= message %>
  • <% end %>
<% end %>

少なくとも1人以上選択してください。

<% if @participants.empty? %>

招待可能な他のプレイヤーがいません。

<% else %> <% @participants.each do |participant| %>
<% end %> <% end %>
<%= link_to "キャンセル", game_boards_path(@game), class: "bg-white py-2 px-4 border border-gray-300 rounded-md shadow-sm text-sm font-medium text-gray-700 hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 mr-3" %> <%= f.submit "掲示板を作成", class: "inline-flex justify-center py-2 px-4 border border-transparent shadow-sm text-sm font-medium rounded-md text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500" %>
<% end %>