diff --git a/booking/templates/booking/duck_list.html b/booking/templates/booking/duck_list.html
index 1cd16a5..5d280d3 100644
--- a/booking/templates/booking/duck_list.html
+++ b/booking/templates/booking/duck_list.html
@@ -21,46 +21,3 @@
{% endif %}
{% endblock %}
-
-{% block endscript %}
-$('.complist-button').click(function() {
- duck_id = $(this).attr('id').replace(/^duck-complist-/, '');
-
- if (isNaN(duck_id) || (duck_id.trim() == '')) {
- return;
- }
-
- var url = Urls['api:complist'](duck_id);
- var dialog = $('
').appendTo('body');
-
- $.getJSON(url, function(data) {
- var items = [];
-
- $.each(data, function(key, item) {
- items.push('' + item.name + ' (' + item.level + ')');
- });
-
- $('', {
- 'class': 'complist',
- 'html': items.join('')
- }).appendTo(dialog);
-
- dialog.dialog({
- title: 'Competence list',
- dialogClass: 'no-close',
- buttons: [
- {
- text: 'Close',
- click: function() {
- $(this).dialog('close');
- }
- }
- ],
- close: function(event, ui) {
- dialog.remove();
- },
- modal: true
- });
- });
-});
-{% endblock %}
diff --git a/booking/templates/front_template.html b/booking/templates/front_template.html
index 9a3fd87..c45a7be 100644
--- a/booking/templates/front_template.html
+++ b/booking/templates/front_template.html
@@ -7,7 +7,6 @@
-
diff --git a/booking/tests.py b/booking/tests.py
index b36b23a..efb74e4 100644
--- a/booking/tests.py
+++ b/booking/tests.py
@@ -297,11 +297,3 @@ class BookingTest(TestCase):
def test_unbooked_duck(self):
self.assertEqual(self.unbooked_duck.booked_by(), None)
-
-class ReverseTest(TestCase):
- def setUp(self):
- self.client = Client()
-
- def test_reverse_js(self):
- response = self.client.get(reverse('js_reverse'))
- self.assertEqual(response.status_code, 200)
diff --git a/duckbook/settings.py b/duckbook/settings.py
index abde5fe..65ce096 100644
--- a/duckbook/settings.py
+++ b/duckbook/settings.py
@@ -36,7 +36,6 @@ INSTALLED_APPS = (
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
- 'django_js_reverse',
'rest_framework',
'accounts',
'booking',