aboutsummaryrefslogtreecommitdiffstats
path: root/servo/templates/customers/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'servo/templates/customers/list.html')
-rwxr-xr-xservo/templates/customers/list.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/servo/templates/customers/list.html b/servo/templates/customers/list.html
new file mode 100755
index 0000000..ee1e926
--- /dev/null
+++ b/servo/templates/customers/list.html
@@ -0,0 +1,11 @@
+{% load servo_tags %}
+{% load i18n %}
+
+<ul class="nav nav-list">
+ <li class="nav-header">{% trans "Customers" %}</li>
+{% for node in customers %}
+ <li class="{% active request group.slug node.pk %}"><a href="{% url 'customers-view_customer' group=group pk=node.pk %}"><i class="icon {{ node.get_icon }}"></i> {{ node.name }}</a>
+ </li>
+{% endfor %}
+</ul>
+{% include "pagination.html" with items=customers %}