Skip to content

Commit 0ac24db

Browse files
committed
Align translators number to right, include in sorting
1 parent e1a7592 commit 0ac24db

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

generate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
</tr>
7272
</thead>
7373
<tbody>
74-
{% for language, repo, completion, translators, visitors, in_switcher in completion_progress | sort(attribute=2) | reverse %}
74+
{% for language, repo, completion, translators, visitors, in_switcher in completion_progress | sort(attribute="2,3") | reverse %}
7575
<tr>
7676
{% if repo %}
7777
<td data-label="language">

style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ th {
2525
min-width: 50px;
2626
box-sizing: border-box;
2727
}
28-
td[data-label="visitors"] {
28+
td[data-label="visitors"], td[data-label="translators"] {
2929
text-align: right;
3030
}
3131
td[data-label="completion"] {

0 commit comments

Comments
 (0)