summaryrefslogtreecommitdiff
path: root/tests/templates
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2019-12-11 00:49:54 -0800
committerCarlton Gibson <carlton.gibson@noumenal.es>2019-12-11 09:49:54 +0100
commite703b93a656b78b9b444bb3a9980e305ed002a70 (patch)
treea97f9a7da09ddf36b2f4886b4b5680f1144faf0e /tests/templates
parentd8e233352877c37c469687287e7761e05bdae94e (diff)
downloaddjango-e703b93a656b78b9b444bb3a9980e305ed002a70.tar.gz
Fixed #31080 -- Removed redundant type="text/javascript" attribute from <script> tags.
Diffstat (limited to 'tests/templates')
-rw-r--r--tests/templates/custom_admin/change_list.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/templates/custom_admin/change_list.html b/tests/templates/custom_admin/change_list.html
index eebc9c7e30..bb6f43748e 100644
--- a/tests/templates/custom_admin/change_list.html
+++ b/tests/templates/custom_admin/change_list.html
@@ -1,7 +1,7 @@
{% extends "admin/change_list.html" %}
{% block extrahead %}
-<script type="text/javascript">
+<script>
var hello = '{{ extra_var }}';
</script>
{% endblock %}