File: issues_page.html

package info (click to toggle)
appstream-generator 0.10.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,864 kB
  • sloc: cpp: 13,398; xml: 259; sh: 235; python: 103; makefile: 19
file content (72 lines) | stat: -rw-r--r-- 1,844 bytes parent folder | download
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
{% extends "base.html" %}

{% block title %}Issues for {{package_name}} in {{suite}}/{{section}}{% endblock %}

{% block float_right %}
<small>Last updated on: {{time}}</small>
{% endblock %}

{% block header_content %}
<span style="font-size:18px;"><a href="index.html" style="color: #000000;">⇦ |</a></span>
<span>{{package_name}}</span> <span style="font-size:16px;">[{{section}}]</span>
{% endblock %}

{% block content %}
<h1>Hints for {{package_name}} in {{section}}</h1>

<div class="wrapper">

{% for entry in entries %}
<h2>
  {{entry.component_id}}
  {% for arch in entry.architectures %}
    <span style="font-size:12px;" class="label label-neutral">⚙ {{arch.arch}}</span>
  {% endfor %}
</h2>

  {% if entry.has_errors %}
  <div class="infobox infobox-error">
    <h2>Errors</h2>
    <ul class="list-group">
      {% for error in entry.errors %}
        <li class="list-group-item list-group-item-info">
        <strong>{{error.error_tag}}</strong><br/>
        {{error.error_description}}
        </li>
      {% endfor %}
    </ul>
  </div>
  {% endif %}

  {% if entry.has_warnings %}
  <div class="infobox infobox-warning">
    <h2>Warnings</h2>
    <ul class="list-group">
      {% for warning in entry.warnings %}
        <li class="list-group-item list-group-item-info">
        <strong>{{warning.warning_tag}}</strong><br/>
        {{warning.warning_description}}
        </li>
      {% endfor %}
    </ul>
  </div>
  {% endif %}

  {% if entry.has_infos %}
  <div class="infobox infobox-hint">
    <h2>Hints</h2>
    <ul class="list-group">
      {% for info in entry.infos %}
        <li class="list-group-item list-group-item-info">
        <strong>{{info.info_tag}}</strong><br/>
        {{info.info_description}}
        </li>
      {% endfor %}
    </ul>
  </div>
  {% endif %}

{% endfor %}

</div>
{% endblock %}