File diff a2bdcb48b2af → 796c8cca18d9
pinaxcon/templates/registrasion/_category_list.html
Show inline comments
 
new file 100644
 
<ul>
 
  {% for category in categories %}
 
    {% if not category in exclude %}
 
      <li><a href="{% url "product_category" category.id %}">{{ category.name }}</a></li>
 
    {% endif %}
 
  {% endfor %}
 
</ul>