Skip to content

Commit

Permalink
Merge pull request #406 from stkrp/patch-1
Browse files Browse the repository at this point in the history
Added Django-style to <th>
  • Loading branch information
craigds committed Oct 15, 2015
2 parents ce1786e + ce53b0c commit 84325dd
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions mptt/templates/admin/mptt_change_list_results.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,12 @@
<table cellspacing="0" id="result_list">
<thead>
<tr>
{% for header in result_headers %}<th scope="col"{{ header.class_attrib }}>
{{ header.text|capfirst }}
</th>{% endfor %}
{% for header in result_headers %}
<th scope="col"{{ header.class_attrib }}>
<div class="text"><span>{{ header.text|capfirst }}</span></div>
<div class="clear"></div>
</th>
{% endfor %}
</tr>
</thead>
<tbody>
Expand Down

0 comments on commit 84325dd

Please sign in to comment.