% if can? :manage, @tournament %>
Import Data
<%= form_for(Tournament.new, url: import_url(@tournament)) do |f| %>
<%= f.label 'Import text' %>
<%= f.text_area :import_text, cols: "30", rows: "20" %>
<%= submit_tag "Import", :class=>"btn btn-success", data: { confirm: 'Are you sure? This will delete everything for the current tournament and restore it with the backup text pasted below.' }%>
<% end %>
<% end %>