/django/contrib/admin/templates/admin/date_hierarchy.html
HTML | 10 lines | 10 code | 0 blank | 0 comment | 0 complexity | 9fd16fc71011c22dd2681a80821d3b5b MD5 | raw file
Possible License(s): BSD-3-Clause
1{% if show %} 2<div class="xfull"> 3<ul class="toplinks"> 4{% if back %}<li class="date-back"><a href="{{ back.link }}">‹ {{ back.title }}</a></li>{% endif %} 5{% for choice in choices %} 6<li> {% if choice.link %}<a href="{{ choice.link }}">{% endif %}{{ choice.title }}{% if choice.link %}</a>{% endif %}</li> 7{% endfor %} 8</ul><br class="clear" /> 9</div> 10{% endif %}