Modify admin template to include table wrap styles
This commit is contained in:
parent
ac139c8a99
commit
c6f05889ff
2 changed files with 19 additions and 1 deletions
|
|
@ -0,0 +1,18 @@
|
|||
{% extends "admin/base_site.html" %}
|
||||
{% block extrahead %}
|
||||
<style>
|
||||
table {
|
||||
width: 90%;
|
||||
border-spacing: 0;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
table thead th {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
th {
|
||||
word-break: break-all;
|
||||
}
|
||||
</style>
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue