File tree Expand file tree Collapse file tree 2 files changed +22
-19
lines changed Expand file tree Collapse file tree 2 files changed +22
-19
lines changed Original file line number Diff line number Diff line change @@ -114,6 +114,7 @@ td[data-label="warnings"], td[data-label="lint"] {
114114 tr {
115115 border : 1px solid # ccc ;
116116 margin-bottom : 5px ;
117+ overflow-x : auto;
117118 }
118119 td {
119120 border : none;
Original file line number Diff line number Diff line change 1313 </thead >
1414 <tbody >
1515 {% for project , metadata in build_details | sort (attribute ='0.completion' ) | reverse %}
16- <tr >
17- <td data-label =" language" >{{ project.language.name }} ({{ project.language.code }})</td >
18- <td data-label =" branch" >{{ project.branch }}</td >
19- <td data-label =" updated" >{{ metadata[2] .strftime('%Y/%m/%d %T') if metadata[2] else '' }}</td >
20- <td data-label =" warnings" >
21- {% if project .completion %}
22- <a href =" warnings-{{ project.language.code }}.txt" >{{ metadata[0] }}</a >
23- {% else %}
24- {{ metadata[0] }}
25- {% endif %}
26- </td >
27- <td data-label =" lint" >
28- {% if project .completion %}
29- <a href =" warnings-lint-{{ project.language.code }}.txt" >{{ metadata[1] }}</a >
30- {% else %}
31- {{ metadata[1] }}
32- {% endif %}
33- </td >
34- </tr >
16+ {% if project .repository %}
17+ <tr >
18+ <td data-label =" language" >{{ project.language.name }} ({{ project.language.code }})</td >
19+ <td data-label =" branch" >{{ project.branch }}</td >
20+ <td data-label =" updated" >{{ metadata[2] .strftime('%Y/%m/%d %T') if metadata[2] else '' }}</td >
21+ <td data-label =" warnings" >
22+ {% if project .completion %}
23+ <a href =" warnings-{{ project.language.code }}.txt" >{{ metadata[0] }}</a >
24+ {% else %}
25+ {{ metadata[0] }}
26+ {% endif %}
27+ </td >
28+ <td data-label =" lint" >
29+ {% if project .completion %}
30+ <a href =" warnings-lint-{{ project.language.code }}.txt" >{{ metadata[1] }}</a >
31+ {% else %}
32+ {{ metadata[1] }}
33+ {% endif %}
34+ </td >
35+ </tr >
36+ {% endif %}
3537 {% endfor %}
3638 </tbody >
3739</table >
You can’t perform that action at this time.
0 commit comments