Update eboutic main template

This commit is contained in:
Skia 2016-10-19 21:30:41 +02:00
parent 47c01d6d10
commit 933afd4fb7

View File

@ -4,11 +4,11 @@
{% trans %}Eboutic{% endtrans %} {% trans %}Eboutic{% endtrans %}
{% endblock %} {% endblock %}
{% macro add_product(id, content) %} {% macro add_product(id, content, class="") %}
<form method="post" action="{{ url('eboutic:main') }}" class="inline" style="display:inline"> <form method="post" action="{{ url('eboutic:main') }}" class="inline {{ class }}">
{% csrf_token %} {% csrf_token %}
<input type="hidden" name="action" value="add_product"> <input type="hidden" name="action" value="add_product">
<button type="submit" name="product_id" value="{{ id }}"> {{ content }} </button> <button type="submit" name="product_id" value="{{ id }}"> {{ content|safe }} </button>
</form> </form>
{% endmacro %} {% endmacro %}
@ -42,7 +42,14 @@
{% if eboutic.products.filter(product_type=t).exists() %} {% if eboutic.products.filter(product_type=t).exists() %}
<h5>{{ t }}</h5> <h5>{{ t }}</h5>
{% for p in eboutic.products.filter(product_type=t).all() %} {% for p in eboutic.products.filter(product_type=t).all() %}
{{ add_product(p.id, p.name) }} {% set file = None %}
{% if p.icon %}
{% set file = p.icon.url %}
{% else %}
{% set file = static('core/img/na.gif') %}
{% endif %}
{% set prod = '<strong>%s</strong><hr><img src="%s" /><span>%s €</span>' % (p.name, file, p.selling_price) %}
{{ add_product(p.id, prod, "form_button") }}
{% endfor %} {% endfor %}
{% endif %} {% endif %}
{% endfor %} {% endfor %}