show.html.erb - warvox - VoIP based wardialing tool, forked from rapid7/warvox.
(HTM) git clone git://jay.scot/warvox
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
---
show.html.erb (567B)
---
1 <p>
2 <b>Number:</b>
3 <%=h @call.number %>
4 </p>
5
6 <p>
7 <b>CallerID:</b>
8 <%=h @call.cid %>
9 </p>
10
11 <p>
12 <b>Dial job:</b>
13 <%=h @call.job_id %>
14 </p>
15
16 <p>
17 <b>Provider:</b>
18 <%=h @call.provider %>
19 </p>
20
21 <p>
22 <b>Completed:</b>
23 <%=h @call.completed %>
24 </p>
25
26 <p>
27 <b>Busy:</b>
28 <%=h @call.busy %>
29 </p>
30
31 <p>
32 <b>Seconds:</b>
33 <%=h @call.seconds %>
34 </p>
35
36 <p>
37 <b>Ringtime:</b>
38 <%=h @call.ringtime %>
39 </p>
40
41 <p>
42 <b>Rawfile:</b>
43 <%=h @call.rawfile %>
44 </p>
45
46
47 <%= link_to 'Edit', edit_call_path(@project, @call) %> |
48 <%= link_to 'Back', calls_path(@project) %>