URI: 
       view_results.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
       ---
       view_results.html.erb (1345B)
       ---
            1 <% include_view_javascript %>
            2 
            3 <h1 class='title'>Call Results for Scan #<%=@job.id%></h1>
            4 
            5 <table class='table table-striped table-condensed'>
            6 <tr>
            7         <td align='center'>
            8                 <%= render :partial => 'shared/graphs/call_results' %>
            9         </td>
           10 </tr>
           11 </table>
           12 
           13 
           14 <%= form_tag do %>
           15 <div class="control-bar">
           16 <table width='100%' border=0 cellpadding=6>
           17 <tbody><tr>
           18 <td>
           19         <%= submit_checkboxes_to(raw('<i class="fa fa-refresh"></i> Scan'), new_dialer_job_path, { :class => "btn btn any" }) %>
           20 </td><td>
           21         <%= submit_checkboxes_to(raw('<i class="fa fa-cog"></i> Analyze'), analyze_job_path, { :class => "btn btn any" }) %>
           22 </td><td>
           23         <%= submit_checkboxes_to(raw('<i class="fa fa-trash"></i> Delete'), purge_calls_job_path, { :class => "btn any", :confirm => 'Purge selected calls?' }) %>
           24 </td>
           25 </tr></tbody></table>
           26 
           27 </div>
           28 
           29 
           30 <div class="analysis-control-bar"> </div>
           31 
           32 <span id="results-path" class="invisible"><%= view_results_path(@project, @job.id, :format => :json) %></span>
           33 
           34 <table id='results-table' class='table table-striped table-condensed sortable list' >
           35   <thead>
           36   <tr>
           37         <th><%= check_box_tag "all_results", false %></th>
           38     <th>Number</th>
           39     <th>Source CID</th>
           40     <th>Provider</th>
           41     <th>Answered</th>
           42     <th>Busy</th>
           43     <th>Seconds</th>
           44         <th>Ring Time</th>
           45   </tr>
           46   </thead>
           47   <tbody id="results-list">
           48   </tbody>
           49 </table>
           50 
           51 <% end %>