Files @ 75f3e26f1f32
Branch filter:

Location: django-shaker/djangoshaker/templates/djangoshaker/recipe_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 - Recipes{% endblock %}

{% block header_title %}Recipes{% endblock %}

{% block content %}

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

{% endblock %}