diff --git a/django/website/hid/static/hid/js/select_all_checkbox.js b/django/website/hid/static/hid/js/select_all_checkbox.js
index c0d68802adb710fd63a28439a4b7c61a3f13f3fa..deb5dbcf0ec5b993c3e6ea613a1ccadc6a1e684f 100644
--- a/django/website/hid/static/hid/js/select_all_checkbox.js
+++ b/django/website/hid/static/hid/js/select_all_checkbox.js
@@ -12,7 +12,7 @@
 (function($) {
     $(document).ready(function() {
         var selectors = {
-            td_input : 'form td.select_action > input',
+            td_input : 'form td.select_action input[type="checkbox"]',
             th_select : 'form th.select_action'
         };
 
diff --git a/django/website/hid/tables.py b/django/website/hid/tables.py
index d1b54e38df0ce462cdb2377795e7693f231ca18c..2e05bfe58751d591d8d8b621c69c4048007aaaa6 100644
--- a/django/website/hid/tables.py
+++ b/django/website/hid/tables.py
@@ -15,7 +15,10 @@ class ItemTable(tables.Table):
         template = 'hid/table.html'
         order_by = ('-created',)
 
-    select_action = NamedCheckBoxColumn(accessor='id', verbose_name='Select')
+    select_action = tables.TemplateColumn(
+        template_name='hid/custom_checkbox.html',
+        verbose_name='Select'
+    )
     created = tables.columns.DateTimeColumn(
         verbose_name='Imported',
         format=settings.SHORT_DATETIME_FORMAT,
diff --git a/django/website/hid/templates/hid/custom_checkbox.html b/django/website/hid/templates/hid/custom_checkbox.html
new file mode 100644
index 0000000000000000000000000000000000000000..390e0cc54bd3b155d541ec8e8b63a6119f6ed827
--- /dev/null
+++ b/django/website/hid/templates/hid/custom_checkbox.html
@@ -0,0 +1,9 @@
+<div class='custom-checkbox'>
+    <input 
+        type='checkbox' 
+        id='custom-checkbox-{{ record.id }}' 
+        value='{{ record.id }}' 
+        name='delete'
+    />
+    <label for='custom-checkbox-{{ record.id }}'></label>
+</div>