new.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
       ---
       new.html.erb (809B)
       ---
            1 <h1>New call</h1>
            2 
            3 <%= form_for(@call) do |f| %>
            4   <%= f.error_messages %>
            5 
            6   <p>
            7     <%= f.label :number %><br />
            8     <%= f.text_field :number %>
            9   </p>
           10   <p>
           11     <%= f.label :job_id %><br />
           12     <%= f.text_field :job_id %>
           13   </p>
           14   <p>
           15     <%= f.label :provider %><br />
           16     <%= f.text_field :provider %>
           17   </p>
           18   <p>
           19     <%= f.label :completed %><br />
           20     <%= f.check_box :completed %>
           21   </p>
           22   <p>
           23     <%= f.label :busy %><br />
           24     <%= f.check_box :busy %>
           25   </p>
           26   <p>
           27     <%= f.label :seconds %><br />
           28     <%= f.text_field :seconds %>
           29   </p>
           30   <p>
           31     <%= f.label :ringtime %><br />
           32     <%= f.text_field :ringtime %>
           33   </p>
           34   <p>
           35     <%= f.label :rawfile %><br />
           36     <%= f.text_field :rawfile %>
           37   </p>
           38   <p>
           39     <%= f.submit "Create" %>
           40   </p>
           41 <% end %>
           42 
           43 <%= link_to 'Back', calls_path(@project) %>