File tree 3 files changed +13
-2
lines changed
3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ div.category div.crate:last-child {
175
175
padding-bottom : 0 ;
176
176
}
177
177
178
- div .category div .crate > a {
178
+ div .category div .crate > a , div . category div . crate > span . title {
179
179
flex : 1 ;
180
180
text-decoration : none;
181
181
}
Original file line number Diff line number Diff line change 20
20
UTC
21
21
{% endmacro %}
22
22
23
+ {% macro crate_header() %}
24
+ < div class ="crate ">
25
+ < span class ="title "> Crate</ span >
26
+ < span class ="run "> Previous run</ span >
27
+ < span class ="run "> Current run</ span >
28
+ </ div >
29
+ {% endmacro %}
30
+
23
31
{% macro crate_div(crate) %}
24
32
< div class ="crate ">
25
33
< a href ="{{ crate.url|safe }} " target ="_blank " rel ="noopener ">
37
45
</ span >
38
46
{% endfor %}
39
47
</ div >
40
- {% endmacro %}
48
+ {% endmacro %}
Original file line number Diff line number Diff line change 38
38
{{ name }} ({{ crates.Plain|length }})
39
39
</ div >
40
40
< div class ="crates hidden " id ="crt-{{ name }} ">
41
+ {{ macros::crate_header() }}
41
42
{% for crate in crates.Plain %}
42
43
{{ macros::crate_div(crate=crate) }}
43
44
{% endfor %}
56
57
</ div >
57
58
</ div >
58
59
< div class ="crates " id ="{{ name }}-tr{{ loop.index }} ">
60
+ {{ macros::crate_header() }}
59
61
{% for crate in subcrates %}
60
62
{{ macros::crate_div(crate=crate) }}
61
63
{% endfor %}
77
79
</ div >
78
80
</ div >
79
81
< div class ="crates " id ="{{ name }}-rt{{ loop.index }} ">
82
+ {{ macros::crate_header() }}
80
83
{% for crate in subcrates %}
81
84
{{ macros::crate_div(crate=crate) }}
82
85
{% endfor %}
You can’t perform that action at this time.
0 commit comments