mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-06-03 21:54:18 -04:00
13 lines
292 B
HTML
Executable File
13 lines
292 B
HTML
Executable File
{% 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 %} |