diff options
author | Filipp Lepalaan <filipp@mac.com> | 2015-08-04 10:11:24 +0300 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2015-08-04 10:11:24 +0300 |
commit | 63b0fc6269b38edf7234b9f151b80d81f614c0a3 (patch) | |
tree | 555de3068f33f8dddb4619349bbea7d9b7c822fd /servo/templates/orders/customer.html | |
download | Servo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.tar.gz Servo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.tar.bz2 Servo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.zip |
Initial commit
First public commit
Diffstat (limited to 'servo/templates/orders/customer.html')
-rwxr-xr-x | servo/templates/orders/customer.html | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/servo/templates/orders/customer.html b/servo/templates/orders/customer.html new file mode 100755 index 0000000..ccd9184 --- /dev/null +++ b/servo/templates/orders/customer.html @@ -0,0 +1,52 @@ +{% load i18n %} +{% load mptt_tags %} +{% load servo_tags %} +{% recursetree nodes %} +<address> + <strong><a href="{{ node.get_absolute_url }}"><i class="{{ node.get_icon }}"></i> {{ node.name }}</a></strong> + <div class="btn-group pull-right"> + <a class="btn btn-small dropdown-toggle{% if order.is_closed %} disabled{% endif %}" data-toggle="dropdown" href="#"> + <i class="icon-cog"></i> <span class="caret"></span> + </a> + <ul class="dropdown-menu"> + <li><a href="{% url 'orders-choose_customer' order.pk %}" data-modal="#modal">{% trans "Choose" %}</a></li> + {% if node.is_company %} + <li><a href="{% url 'customers-create_contact' parent_id=node.id %}">{% trans "Add contact" %}</a></li> + {% else %} + <li class="disabled"><a href="#">{% trans "Add contact" %}</a></li> + {% endif %} + <li><a href="{% url 'orders-create_with_customer' customer_id=node.id %}">{% trans "Create Order" %}</a></li> + <li class="divider"></li> + <li><a href="{% url 'customers-edit_customer' group=node.get_group pk=node.pk %}">{% trans "Edit" %}</a></li> + {% if node.is_leaf_node %} + <li><a href="{% url 'orders-remove_customer' pk=order.pk customer_id=node.pk %}" data-modal="#modal">{% trans "Remove" %}</a></li> + {% else %} + <li class="disabled"><a href="#" data-modal="#modal">{% trans "Remove" %}</a></li> + {% endif %} + </ul> + </div> + <br/> + {% if node.email %} + <a href="{% url 'notes-create_with_to_and_order' recipient=node.email order_id=order.id %}">{{ node.email }}</a><br/> + {% endif %} + {% if node.phone %} + <a href="{% url 'notes-create_with_to_and_order' recipient=node.get_standard_phone order_id=order.id %}">{{ node.get_national_phone }}</a><br/> + {% endif %} + {% if node.street_address %} + {{ node.street_address }}<br/> + {{ node.zip_code }} {{ node.city }} + {% endif %} + {% with node.fullprops.items as props %} + {% if props %} + <br/> + {% for k, v in props %} + {{ k }}: {{ v }}<br/> + {% endfor %} + {% endif %} + {% endwith %} + {% if node.notes %} + <p><small class="muted">{{ node.notes|default:"" }}</small></p> + {% endif %} +</address> +{{ children }} +{% endrecursetree %} |