42 lines
773 B
HTML
42 lines
773 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Pip Index</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
|
|
.hosted-app {
|
|
margin-left: 20px;
|
|
}
|
|
|
|
.wheel-list {
|
|
margin-left: 20px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Minimum Pip Index</h1>
|
|
|
|
{% for build in found_builds %}
|
|
<div class="commit-section">
|
|
<h2>{{ build.title }}</h2>
|
|
{% if build.wheels %}
|
|
<div class="wheel-list">
|
|
<h3>Wheels:</h3>
|
|
<ul>
|
|
{% for wheel in build.wheels %}
|
|
<li>
|
|
<a href="{{ wheel }}" target="_blank">{{ wheel }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endfor %}
|
|
</body>
|
|
</html>
|