view.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.html.erb (1125B)
---
1 <% include_view_javascript %>
2
3 <h1 class='title'>Analysis of Scan #<%= @job_id %></h1>
4
5 <table class='table table-striped table-condensed'>
6 <tr>
7 <td align='center'>
8 <%= render :partial => 'shared/graphs/lines_by_type' %>
9 </td>
10 </tr>
11 </table>
12
13
14 <%= form_tag do %>
15
16 <div class="control-bar">
17 <table width='100%' border=0 cellpadding=6>
18 <tbody><tr>
19 <td>
20 <%= submit_checkboxes_to(raw('<i class="fa fa-refresh"></i> Scan'), new_dialer_job_path, { :class => "btn any" }) %>
21 </td>
22 <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_analyze_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>Type</th>
40 <th>Signal</th>
41 </tr>
42 </thead>
43 <tbody id="results-list">
44 </tbody>
45 </table>
46
47 <% end %>