mirror of
https://github.com/Hopiu/djLint.git
synced 2026-05-20 19:01:52 +00:00
12 lines
439 B
HTML
12 lines
439 B
HTML
{% extends "admin/date_hierarchy.html" %}
|
|
{% load i18n %}
|
|
{% block date-hierarchy-choices %}
|
|
<select id="date-selector" class="override-date_hierarchy">
|
|
{% for choice in choices %}
|
|
<option {% if choice.link %}value="{{ choice.link }}"{% endif %}>
|
|
{{ choice.title }}
|
|
</option>
|
|
{% endfor %}
|
|
</select>
|
|
<button id="date-selected">{% translate "Go" %}</button>
|
|
{% endblock %}
|