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 %}
|