Rewrite to Django from scratch. Now it's much more user-friendly.
[cookbook.git] / cookbook / template / recipes.html
diff --git a/cookbook/template/recipes.html b/cookbook/template/recipes.html
deleted file mode 100644 (file)
index 06e320e..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-{% extends "base.html" %}
-
-{% block page_title %}
-    Index {% if selected_tags %}({{ ', '.join(selected_tags) }}){% endif %}
-{% endblock %}
-
-{% block content %}
-    <form action="" method="get" style="float:right;">
-      <select name="tag" size="5" multiple="multiple">
-       {% for tag in cookbook.tags() %}
-       <option value="{{ tag }}">{{ tag }}</option>
-       {% endfor %}
-      </select><br/>
-      <input type="submit" value="Show only selected tags"/>
-    </form>
-    <ul id="recipe-list">
-      {% for recipe in recipes %}
-      <li><a href="recipe?name={{ recipe.clean_name(ascii=True) }}">
-             {{ recipe.name }}</li>
-      {% endfor %}
-    </ul>
-
-    <p><a href="edit">add new receipe</a></p>
-{% endblock %}