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/search/spotlight.html | |
download | Servo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.tar.gz Servo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.tar.bz2 Servo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.zip |
Initial commit
First public commit
Diffstat (limited to 'servo/templates/search/spotlight.html')
-rwxr-xr-x | servo/templates/search/spotlight.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/servo/templates/search/spotlight.html b/servo/templates/search/spotlight.html new file mode 100755 index 0000000..e372b23 --- /dev/null +++ b/servo/templates/search/spotlight.html @@ -0,0 +1,37 @@ +{% extends "two_column_layout.html" %} +{% load servo_tags %} +{% load i18n %} + +{% block toolbar %} + <a href="{% url 'customers-create_customer' group='all' %}?name={{ query }}" class="btn btn-inverse"><i class="icon-plus icon-white"></i> {% trans "New Customer" %}</a> +{% endblock toolbar %} + +{% block first_column %} +<ul class="nav nav-list"> + <li class="nav-header">{% trans "Results" %}</li> + <li class="{% active request 'search/customers' %}"> + <a href="/search/customers/?q={{ query }}">{% trans "Customers" %}</a> + </li> + <li class="{% active request 'search/devices' %}"> + <a href="/search/devices/?q={{ query }}">{% trans "Devices" %}</a> + </li> + <li class="{% active request 'search/gsx' %}"> + <a href="/search/gsx/{{ what }}?q={{ query }}">{% trans "GSX" %}</a> + </li> + <li class="{% active request 'search/orders' %}"> + <a href="/search/orders/?q={{ query }}">{% trans "Orders" %}</a> + </li> + <li class="{% active request 'search/products' %}"> + <a href="/search/products/?q={{ query }}">{% trans "Products and Parts" %}</a> + </li> + <li class="{% active request 'search/notes' %}"><a href="/search/notes/?q={{ query }}">{% trans "Notes" %}</a></li> + <li class="{% active request 'search/articles' %}"><a href="/search/articles/?q={{ query }}">{% trans "Articles" %}</a></li> +</ul> +{% endblock first_column %} + +{% block second_column %} +{% endblock second_column %} + +{% block footer %} + <li><i class="icon-home"></i> <a href="{% url 'accounts-list_orders' request.user.username %}">{% trans "Home" %}</a> <span class="divider">/</span></li><li class="active">{{ title }}</li> +{% endblock footer %} |