remotes/origin/artem
Gena 11 years ago
parent a72803a77c
commit 22a807591e
  1. 21
      batiskaf/templates/jinja2/base.jinja

@ -113,16 +113,21 @@
<li>
<div class="yamm-content">
<div class="row">
{% for child in category.childs.all() %}
<ul>
<li><a class="title" href="{{ child.get_absolute_url() }}">{{ child.title }}</a>
</li>
{% for child2 in child.childs.all() %}
<li><a href="{{ child2.get_absolute_url() }}">{{ child2.title }}</a></li>
{% endfor %}
{% for child in category.childs.all() %}
<div class="col-xs-3 col-sm-3 col-md-3 col-lg-3">
<ul>
<li><a class="title"
href="{{ child.get_absolute_url() }}">{{ child.title }}</a>
</li>
{% for child2 in child.childs.all() %}
<li>
<a href="{{ child2.get_absolute_url() }}">{{ child2.title }}</a>
</li>
{% endfor %}
</ul>
</ul>
</div>
{% endfor %}

Loading…
Cancel
Save