This repository was archived by the owner on Feb 11, 2020. It is now read-only.
forked from intake/status
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtemplate.html
More file actions
97 lines (94 loc) · 3.51 KB
/
template.html
File metadata and controls
97 lines (94 loc) · 3.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<html>
<head>
<link href='style.css' rel='stylesheet' type="text/css">
<link rel='icon' href='favicon.ico'>
</head>
<body>
<div id="wrapper">
<h1>XDev and Earth System Informatics Teams' Project Dashboard</h1>
{% for section in config %}
<h2>{{ section.name }}</h2>
<table align='center'>
<tr>
<th>Name</th>
<th>CircleCI</th>
<th>Coverage</th>
<th>ReadTheDocs</th>
<th>PyPI</th>
<th>Conda</th>
</tr>
{% for package in section.packages %}
<tr>
<td align='left'>
<a href="http://github.com/{{ package.repo }}">{{ package.name }}</a>
</td>
{% if 'circleci' in package.badges %}
<td align='left'>
<a href="https://circleci.com/gh/{{ package.repo }}/tree/master">
<img src="https://img.shields.io/circleci/project/github/{{ package.repo }}/master.svg?style=for-the-badge&logo=circleci">
</a>
</td>
{% else %}
<td align='center'>-</td>
{% endif %}
{% if 'codecov' in package.badges %}
<td align='left'>
<a href="https://codecov.io/gh/{{ package.repo }}">
<img src="https://img.shields.io/codecov/c/github/{{ package.repo }}.svg?style=for-the-badge">
</a>
</td>
{% else %}
<td align='center'>-</td>
{% endif %}
{% if 'rtd' in package.badges %}
<td align='left'>
<a href="https://{{ package.rtd_name }}.readthedocs.io/en/latest/?badge=latest">
<img src="https://img.shields.io/readthedocs/{{ package.rtd_name }}/latest.svg?style=for-the-badge">
</a>
</td>
{% else %}
<td align='center'>-</td>
{% endif %}
{% if 'pypi' in package.badges %}
<td align='left'>
<a href="https://pypi.python.org/pypi/{{ package.pypi_name }}">
<img src="https://img.shields.io/pypi/v/{{ package.pypi_name }}.svg?style=for-the-badge&colorB=cc77dd">
</a>
</td>
{% else %}
<td align='center'>-</td>
{% endif %}
{% if 'conda' in package.badges %}
<td align='left'>
<a href="https://anaconda.org/{{ package.conda_channel }}/{{ package.conda_package }}">
<img src="https://img.shields.io/conda/vn/{{ package.conda_channel }}/{{ package.conda_package }}.svg?style=for-the-badge&colorB=4488ff">
</a>
</td>
{% else %}
<td align='center'>-</td>
{% endif %}
{% if 'conda-forge' in package.badges %}
<td align='left'>
<a href="https://anaconda.org/conda-forge/{{ package.conda_package }}">
<img src="https://img.shields.io/conda/vn/conda-forge/{{ package.conda_package }}.svg?style=for-the-badge&colorB=4488ff">
</a>
</td>
{% else %}
<td align='center'>-</td>
{% endif %}
{% if 'defaults' in package.badges %}
<td align='left'>
<a href="https://anaconda.org/anaconda/{{ package.conda_package }}">
<img src="https://img.shields.io/conda/vn/anaconda/{{ package.conda_package }}.svg?style=for-the-badge&colorB=4488ff">
</a>
</td>
{% else %}
<td align='center'>-</td>
{% endif %}
</tr>
{% endfor %}
</table>
{% endfor %}
</div>
</body>
</html>