Remove unused canvas

This commit is contained in:
George Lacey 2021-05-09 05:10:24 +01:00
parent 820e0b391f
commit 5b9c7dfa31

View File

@ -20,9 +20,9 @@
{% if repo_list %} {% if repo_list %}
{% for repo in repo_list %} {% for repo in repo_list %}
{% if repo.archive_after_latest_error %} {% if repo.archive_after_latest_error %}
<div class="col-md-4 rounded float-xl-left bg-success"> <div class="col-md-4 rounded float-xl-left bg-success">
{% else %} {% else %}
<div class="col-md-4 rounded float-xl-left bg-danger"> <div class="col-md-4 rounded float-xl-left bg-danger">
{% endif %} {% endif %}
<h3 class="repo_label">{{ repo.label }}<small class="text-muted"> {{ repo.location }}</small></h3> <h3 class="repo_label">{{ repo.label }}<small class="text-muted"> {{ repo.location }}</small></h3>
<dl class="row"> <dl class="row">
@ -53,8 +53,6 @@
{% else %} {% else %}
<p>No repos found.</p> <p>No repos found.</p>
{% endif %} {% endif %}
<div class="col-md-4 rounded float-xl-left">
<canvas id="myChart"></canvas>
</div> </div>
</body> </body>
</html> </html>