Docs ·
- API ·
+ API ·
Code ·
Help
diff --git a/netbox/templates/dcim/rack.html b/netbox/templates/dcim/rack.html
index 40c9e812e..f0e034968 100644
--- a/netbox/templates/dcim/rack.html
+++ b/netbox/templates/dcim/rack.html
@@ -210,7 +210,7 @@
{% for resv in reservations %}
- {{ resv.units|join:', ' }} |
+ {{ resv.unit_list }} |
{{ resv.description }}
{{ resv.user }} · {{ resv.created }}
diff --git a/netbox/templates/dcim/rackreservation_list.html b/netbox/templates/dcim/rackreservation_list.html
new file mode 100644
index 000000000..b93dc0bf1
--- /dev/null
+++ b/netbox/templates/dcim/rackreservation_list.html
@@ -0,0 +1,14 @@
+{% extends '_base.html' %}
+{% load helpers %}
+
+{% block content %}
+{% block title %}Rack Reservations{% endblock %}
+
+
+ {% include 'utilities/obj_table.html' with bulk_delete_url='dcim:rackreservation_bulk_delete' %}
+
+
+ {% include 'inc/search_panel.html' %}
+
+
+{% endblock %}
diff --git a/requirements.txt b/requirements.txt
index 2c6044f73..b31ded015 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,10 +1,10 @@
cffi>=1.8
cryptography>=1.4
-Django>=1.10
+Django>=1.10,<1.11
django-debug-toolbar>=1.6
django-filter>=1.0.1
django-mptt==0.8.7
-django-rest-swagger==0.3.10
+django-rest-swagger>=2.1.0
django-tables2>=1.2.5
djangorestframework>=3.5.0
graphviz>=0.4.10
|