listing category products
This commit is contained in:
parent
122de99a72
commit
b560b768ae
@ -1,9 +1,14 @@
|
|||||||
<div class="caisse-main row">
|
<div class="caisse-main row">
|
||||||
<div class="listing-products col-9">
|
<div class="listing-products col-9">
|
||||||
{% for c in categories %}
|
{% for c in categories %}
|
||||||
{{ c.title }}
|
<h2>
|
||||||
|
|
||||||
|
{{ c.name }}
|
||||||
|
</h2>
|
||||||
{% for p in c.products %}
|
{% for p in c.products %}
|
||||||
{{ p.title }}
|
<button class="btn btn-default">
|
||||||
|
{{ p.name }}
|
||||||
|
</button>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user