Changed background colour for some table headers by changing class from 'waring' to 'info'.
- Legacy-Id: 9401
This commit is contained in:
parent
3d2517dc1f
commit
e762740200
|
@ -23,7 +23,7 @@
|
|||
</thead>
|
||||
<tbody>
|
||||
{% for state, docs in grouped_docs %}
|
||||
<tr class="warning"><th colspan="3">{{ state.name }}</th></tr>
|
||||
<tr class="info"><th colspan="3">{{ state.name }}</th></tr>
|
||||
|
||||
{% for doc in docs %}
|
||||
<tr>
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
|
||||
<tbody>
|
||||
{% for doc_group in grouped_docs %}
|
||||
<tr class="warning">
|
||||
<tr class="info">
|
||||
<th></th>
|
||||
<th colspan="{{ meta.headers|length|add:"-1" }}">
|
||||
{{ doc_group.grouper|plural:doc_group.list }}
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
<tbody>
|
||||
{% for state in state_groups %}
|
||||
<tr class="warning"><th colspan="2">{{state.grouper}}</th></tr>
|
||||
<tr class="info"><th colspan="2">{{state.grouper}}</th></tr>
|
||||
|
||||
{% for doc in state.list %}
|
||||
<tr">
|
||||
|
|
Loading…
Reference in a new issue