Files @ 75f3e26f1f32
Branch filter:

Location: django-shaker/djangoshaker/templates/djangoshaker/brand_list.html

branko
Initial import from the old repository. Includes sample test project.
{% extends "djangoshaker/template.html" %}

{% load djangoshaker_html_helpers %}

{% block title %}Django Shaker - Brands{% endblock %}

{% block header_title %}Brands{% endblock %}

{% block content %}

{% if brands %}
<ul class="listing">
  {% for brand in brands %}
  <li class="item">{% html_link 'brand' brand.name brand.id "listing_link" %}</li>
  {% endfor %}
</ul>
{% endif %}

{% endblock %}