date_hierarchy.html 628 B

123456789101112131415161718
  1. {% if show %}
  2. <div class="button-group">
  3. <span class="button-group-buttons">
  4. {% spaceless %}
  5. {% if back %}
  6. <a href="{{ back.link }}">&lsaquo; {{ back.title }}</a>
  7. {% endif %}
  8. {% for choice in choices %}
  9. {% if choice.link %}
  10. <a href="{{ choice.link }}">{{ choice.title }}</a>
  11. {% else %}
  12. <span>{{ choice.title }}</span>
  13. {% endif %}
  14. {% endfor %}
  15. {% endspaceless %}
  16. </span>
  17. </div>
  18. {% endif %}