30 lines
949 B
HTML
30 lines
949 B
HTML
{% extends "base.html" %}
|
|
|
|
{% comment %}
|
|
# This file is part of k4ever, a point-of-sale system
|
|
# Contact............ <k4ever@lists.someserver.de>
|
|
# Website............ http://k4ever.someserver.de/
|
|
# Bug tracker........ http://k4ever.someserver.de/report
|
|
#
|
|
# Licensed under GNU Affero General Public License v3 or later
|
|
{% endcomment %}
|
|
|
|
{% block "content" %}
|
|
<h2>Produktübersicht</h2>
|
|
<div class="btn-toolbar">
|
|
<div class="btn-group">
|
|
<a class="btn dropdown-toggle" data-toggle="dropdown" href="#">
|
|
Sortieren nach
|
|
<span class="caret"></span>
|
|
</a>
|
|
<ul class="dropdown-menu">
|
|
<li><a href="/store/"><i class="icon-time"></i> Letzter Änderung</a></li>
|
|
<li><a href="?order=alphabet"><i class="icon-font"></i> Alphabet</a></li>
|
|
<li><a href="?order=price"><i class="icon-shopping-cart"></i> Preis</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
{% include "buyables/product_list.html" with buyables=items %}
|
|
{% endblock %}
|