aboutsummaryrefslogtreecommitdiffstats
path: root/servo/templates/customers/choose-list.html
diff options
context:
space:
mode:
Diffstat (limited to 'servo/templates/customers/choose-list.html')
-rwxr-xr-xservo/templates/customers/choose-list.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/servo/templates/customers/choose-list.html b/servo/templates/customers/choose-list.html
new file mode 100755
index 0000000..84efa7d
--- /dev/null
+++ b/servo/templates/customers/choose-list.html
@@ -0,0 +1,8 @@
+{% load i18n %}
+<ul class="nav nav-pills nav-stacked">
+{% for c in customers %}
+ <li><a href="{% url 'orders-select_customer' pk=order_id customer_id=c.id %}"><i class="{{ c.get_icon }}"></i> <strong>{{ c.fullname }}</strong><br/>{{ c.email }}, {{ c.phone }}</a></li>
+{% empty %}
+ <li class="text-center muted">{% trans "No customers found" %}</li>
+{% endfor %}
+</ul>