summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/glsa/_package.html.erb')
-rw-r--r--app/views/glsa/_package.html.erb16
1 files changed, 0 insertions, 16 deletions
diff --git a/app/views/glsa/_package.html.erb b/app/views/glsa/_package.html.erb
deleted file mode 100644
index 5e3d115..0000000
--- a/app/views/glsa/_package.html.erb
+++ /dev/null
@@ -1,16 +0,0 @@
-<% comps = %w{ >= > *>= *> <= < *<= *< = } -%>
-<tr class="entry <%= 'invalid' if package.invalid? %>">
-<%= fields_for "glsa[package][]", package do |pf| %>
- <td><%= pf.text_field :atom, :class => :nice, :index => nil %></td>
- <td class="odd"><%= pf.select :comp, comps, {}, :index => nil %></td>
- <td class="odd"><%= pf.text_field :version, :class => :nice, :size => 10, :index => nil %></td>
- <td class="odd"><%= pf.text_field :slot, :class => :nice, :size => 5, :index => nil %></td>
- <td><%= pf.text_field :arch, :class => :nice, :size => 7, :index => nil %></td>
- <td class="odd"><%= pf.select :automatic, [["yes", true], ["no", false]], {}, :index => nil %></td>
- <td><%= link_to_function(
- image_tag('icons/package-remove.png', :alt => 'Remove package'),
- "GLSAMaker.editing.packages.del(this)",
- :title => 'Remove package') %>
- <%= pf.hidden_field :my_type, :index => nil %></td>
-<% end %>
-</tr>