aboutsummaryrefslogtreecommitdiff
blob: 16e27ea77357b258808a8fd607833e569add10f2 (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
{% extends "base.html" %}

{% block intro %}
Compile information for: {{cpv}}
{% endblock %}

{% block main %}
{% if pprops %}


  {% for prop in pprops %}
  <div class="compileinfo-{% cycle odd,even %}">
    Portage profile: {{prop.profile.name}}<br />
    Error code: {{prop.error_code}} <br />
    Tinderbox IP: {{prop.tinderbox.ip}} <br />
    Useflags: {% for uf in prop.useflags.all %}
      {{uf.name}} &nbsp;
      {% endfor %} <br />
    Attachments:
    {% for attachment in prop.attachment_set.all %}
    <a href="/collagen/view/attachment/{{attachment.id}}">{{attachment.name}}</a>&nbsp;
    {% endfor %}<br />
    Content: <a href="/collagen/view/content/{{prop.id}}">list</a>
  </div>
  <br />
  {% endfor %}


{% else %}
  No information available
{% endif %}

{% endblock %}