Change date fields to actual date fields #278

This commit is contained in:
Daniel Quinn 2018-01-06 19:21:49 +00:00
parent b58188f805
commit 6fe37678f2

View File

@ -0,0 +1,13 @@
{% extends 'admin/change_form.html' %}
{% block footer %}
{{ block.super }}
{# Hack to force Django to make the created date a date input rather than `text` (the default) #}
<script>
django.jQuery(".field-created input").first().attr("type", "date")
</script>
{% endblock footer %}