blob: 63a0d3067603226ae7ef3f10faf035b957763bca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<p>Please select the references to import:</p>
<%= form_tag(:go => '1') do -%>
<div style="height: 500px; overflow-y: scroll; overflow-x: hidden;">
<table>
<% @cves.each do |cve| %>
<tr>
<td><input type="checkbox" value="1" name="import[cve][<%= cve.cve_id %>]" checked="checked" /></td>
<td><%= render :partial => '/tools/cve', :object => cve %></td>
</tr>
<% end %>
</table>
</div>
<p style="text-align: right;"><input type="submit" class="button" value="Import selected references" id="importsubmit" /></p>
<% end -%>
|