aboutsummaryrefslogtreecommitdiff
blob: 5d5b457fcebc8aa56eb9b976cf4c7e879fbacf68 (plain)
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
{% extends "base.html" %}
{% block content %}

<div class="panel panel-default">
  <div class="panel-heading">
    <h3 class="panel-title">
      <span class="fa fa-fw fa-cubes"></span>{{ category.name }}/{{ package.name }}
    </h3>
  </div>
  <div class="panel-heading">
    <h3 class="panel-title">
      PkgCheck results
    </h3>
  </div>
  <div class="table-responsive">
    <table class="table table-striped">
     <thead>
      <tr>
        <th>Version</th>
        <th>Class</th>
        <th>Message</th>
      </tr>
      </thead>
      {% for violation in pkgcheck -%}
      <tr>
        <td>{{ violation.version.version }}</td>
        <td>{{ violation.violationclass }}</td>
        <td>{{ violation.message }}</td>
      </tr>
      {%- endfor %}
    </table>
  </div>
</div>

{% endblock %}