Restructure cookbook directories and use Grappelli for the admin interface.
[cookbook.git] / example / data / template / cookbook / recipes.html
diff --git a/example/data/template/cookbook/recipes.html b/example/data/template/cookbook/recipes.html
deleted file mode 100644 (file)
index 4fd2828..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-{% extends "cookbook/base.html" %}
-
-{% block title %}
-{{ title }}
-{% endblock %}
-
-{% block content %}
-<h1>{{ title }}</h1>
-{% if recipes %}
-    <ul>
-    {% for recipe in recipes %}
-        <li><a href="{% url recipe recipe.id %}">{{ recipe.name }}</a></li>
-    {% endfor %}
-    </ul>
-{% else %}
-    <p>No recipes are available.</p>
-{% endif %}
-{% endblock %}