Use outside packages.
[prawokultury.git] / migdal / templates / migdal / entry / entry_list.html
diff --git a/migdal/templates/migdal/entry/entry_list.html b/migdal/templates/migdal/entry/entry_list.html
deleted file mode 100755 (executable)
index 0675363..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-{% extends "base.html" %}
-{% load url from future %}
-{% load i18n %}
-{% load migdal_tags %}
-
-
-{% block "main_menu" %}
-    {% if category %}
-        {% main_menu 'object' category %}
-    {% elif entry_type %}
-        {% main_menu 'entry_type' entry_type.db %}
-    {% else %}
-        {{ block.super }}
-    {% endif %}
-{% endblock "main_menu" %}
-
-
-{% block "body" %}
-
-<h1>
-{% if category %}
-    {% trans "Category" %}: {{ category }}
-    <a href="{% url 'migdal_category_feed' category.slug %}">RSS</a>
-{% elif entry_type %}
-    {{ entry_type|capfirst }}
-    <a href="{% url 'migdal_entry_list_'|add:entry_type.db|add:'_feed' %}">RSS</a>
-{% else %}
-    {% trans "Latest news" %}
-{% endif %}
-</h1>
-
-{% if submit %}
-    <a href="{% url 'migdal_submit' %}">{% trans "Submit a new story." %}</a>
-{% endif %}
-
-{% for object in object_list %}
-    {% entry_short object %}
-{% endfor %}
-
-{% endblock %}
\ No newline at end of file