Files @ 2fbffd42a231
Branch filter:

Location: symposion_app/pinaxcon/templates/registrasion/_category_list.html

Tobias
WIP for rego form, 2
1
2
3
4
5
6
7
<ul class="list-unstyled">
  {% for category in categories %}
    {% if not category in exclude %}
      <li><a href="{% url "product_category" category.id %}">{{ category.name }}</a></li>
    {% endif %}
  {% endfor %}
</ul>