mirror of
https://github.com/fastapi-admin/fastapi-admin.git
synced 2026-03-13 10:32:25 +08:00
15 lines
380 B
HTML
15 lines
380 B
HTML
{% extends "widgets/inputs/datetime.html" %}
|
|
{% block script %}
|
|
<script>
|
|
$(function () {
|
|
$('input[name="{{ name }}"]').daterangepicker({
|
|
singleDatePicker: true,
|
|
showDropdowns: true,
|
|
locale: {
|
|
format: 'YYYY-MM-DD'
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
{% endblock %}
|