/django/contrib/admin/templates/mako/admin/date_hierarchy.html
https://code.google.com/p/mango-py/ · HTML · 30 lines · 20 code · 10 blank · 0 comment · 0 complexity · d8114d28f49f03718276c8c6265df4fe MD5 · raw file
- % if show:
- <div class="xfull">
- <ul class="toplinks">
- % if back:
- <li class="date-back"><a href="${back['link']}">‹ ${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