mirror of https://github.com/django/django.git
Refs #26761 -- Removed extra space in admin change list result header.
This commit is contained in:
parent
9a54a9172a
commit
fbe82f8255
|
@ -10,7 +10,7 @@
|
|||
<thead>
|
||||
<tr>
|
||||
{% for header in result_headers %}
|
||||
<th scope="col" {{ header.class_attrib }}>
|
||||
<th scope="col"{{ header.class_attrib }}>
|
||||
{% if header.sortable %}
|
||||
{% if header.sort_priority > 0 %}
|
||||
<div class="sortoptions">
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<thead>
|
||||
<tr>
|
||||
{% for header in result_headers %}
|
||||
<th scope="col" {{ header.class_attrib }}>
|
||||
<th scope="col"{{ header.class_attrib }}>
|
||||
{% if header.sortable %}
|
||||
{% if header.sort_priority > 0 %}
|
||||
<div class="sortoptions">
|
||||
|
|
Loading…
Reference in New Issue