URI: 
       new_analyze.html.erb - warvox - VoIP based wardialing tool, forked from rapid7/warvox.
  HTML git clone git://jay.scot/warvox
   DIR Log
   DIR Files
   DIR Refs
   DIR README
       ---
       new_analyze.html.erb (735B)
       ---
            1 <h1 class='title'>Call Analysis</h1>
            2 
            3 <%= semantic_form_for(@job, :url => analyze_project_job_path, :html => { :multipart => true, :method => :put }) do |f| %>
            4 
            5         <% if @project %>
            6         <%= f.input :project_id, :as => :hidden, :input_html => { :value => @project.id } %>
            7         <% else %>
            8         <%= f.input :project, :as => :select %>
            9         <% end %>
           10 
           11         <%= f.input :force,  :as => :boolean, :label => 'Process previously analyzed calls?', :input_html => { :value => 0 } %>
           12         <%= f.action :submit, :label => 'Analyze', :button_html => { :class => 'btn btn-large fbtn' }  %>
           13 
           14         <a class="btn btn-link" href="<%= project_path(@project) %>" rel="tooltip" title="Return to project"><i class="fa fa-return"></i>Cancel</a>
           15 <% end %>
           16 
           17 <%= set_focus('job_submit') %>