We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71bbab7 commit 89eac8bCopy full SHA for 89eac8b
1 file changed
core/templates/schoolweek.html
@@ -8,7 +8,7 @@ <h5>This week's maroon and gray A and B days.</h5>
8
<table>
9
<tr>
10
{% for day in week %}
11
- <td style="padding:10px;">{{ day }}</td>
+ <td class="{{ day.split('<br>')[1] }}" style="padding:10px;">{{ day }}</td>
12
{% endfor %}
13
</tr>
14
</table>
@@ -20,5 +20,12 @@ <h5>This week's maroon and gray A and B days.</h5>
20
table {
21
border-collapse: collapse;
22
}
23
+
24
+ .Maroon {
25
+ color: #8d0000;
26
+ }
27
+ .Gray {
28
+ color: #808080;
29
30
</style>
31
{% endblock content %}
0 commit comments