Files @ 6e11735c3a45
Branch filter:

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

branko
Added some missing headings. Some small styling changes. The ingredient page now lists the recipes the ingredient is used in as well.
{% extends "djangoshaker/template.html" %}

{% load djangoshaker_html_helpers %}

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

{% block content %}

<h1>Brands</h1>

{% if brands %}
<ul class="unstyled">
  {% for brand in brands %}
  <li class="item">{% html_link 'brand' brand.name brand.id "btn btn-link btn-fixed" %}</li>
  {% endfor %}
</ul>
{% endif %}

{% endblock %}