summaryrefslogtreecommitdiffstats
path: root/webapp/django/contrib/admin/templates/admin/date_hierarchy.html
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/django/contrib/admin/templates/admin/date_hierarchy.html')
-rw-r--r--webapp/django/contrib/admin/templates/admin/date_hierarchy.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/webapp/django/contrib/admin/templates/admin/date_hierarchy.html b/webapp/django/contrib/admin/templates/admin/date_hierarchy.html
new file mode 100644
index 0000000000..005851051c
--- /dev/null
+++ b/webapp/django/contrib/admin/templates/admin/date_hierarchy.html
@@ -0,0 +1,10 @@
+{% if show %}
+<div class="xfull">
+<ul class="toplinks">
+{% if back %}<li class="date-back"><a href="{{ back.link }}">&lsaquo; {{ back.title }}</a></li>{% endif %}
+{% for choice in choices %}
+<li> {% if choice.link %}<a href="{{ choice.link }}">{% endif %}{{ choice.title }}{% if choice.link %}</a>{% endif %}</li>
+{% endfor %}
+</ul><br class="clear" />
+</div>
+{% endif %}