fnp
/
django-migdal.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
add title for category/type pages, remove commented out rss links
[django-migdal.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
index
3585adb
..
05583bd
100644
(file)
--- a/
migdal/templates/migdal/entry/entry_list.html
+++ b/
migdal/templates/migdal/entry/entry_list.html
@@
-1,20
+1,18
@@
{% extends "base.html" %}
{% extends "base.html" %}
-{% load url from future %}
{% load i18n %}
{% load pagination_tags fnp_prevnext %}
{% load migdal_tags %}
{% load i18n %}
{% load pagination_tags fnp_prevnext %}
{% load migdal_tags %}
-{% block "body" %}
+{% block titleextra %}{% if category %}{{ category.title }} :: {% elif entry_type %}{{ entry_type|capfirst }} :: {% endif %}{% endblock %}
+
+
+{% block body %}
{% if category %}
{% if category %}
- <h1>{% trans "Category" %}: {{ category }}
- <!--a href="{% url 'migdal_category_feed' category.slug %}">RSS</a-->
- </h1>
+ <h1>{% trans "Category" %}: {{ category }}</h1>
{% elif entry_type %}
{% elif entry_type %}
- <h1>{{ entry_type|capfirst }}
- <!--a href="{% url 'migdal_entry_list_'|add:entry_type.db|add:'_feed' %}">RSS</a-->
- </h1>
+ <h1>{{ entry_type|capfirst }}</h1>
{% endif %}
{% if object_list.promobox and request.page == 1 %}
{% endif %}
{% if object_list.promobox and request.page == 1 %}
@@
-45,6
+43,9
@@
</p>
{% endif %}
</p>
{% endif %}
+{% if not object_list %}
+ <p class="warning">{% trans "Work in progress." %}</p>
+{% endif %}
{% autopaginate object_list 10 %}
{% for object in object_list %}
{% autopaginate object_list 10 %}
{% for object in object_list %}