diff options
Diffstat (limited to 'web/templates/view-package-props.html')
-rw-r--r-- | web/templates/view-package-props.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/web/templates/view-package-props.html b/web/templates/view-package-props.html new file mode 100644 index 0000000..16e27ea --- /dev/null +++ b/web/templates/view-package-props.html @@ -0,0 +1,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}} + {% endfor %} <br /> + Attachments: + {% for attachment in prop.attachment_set.all %} + <a href="/collagen/view/attachment/{{attachment.id}}">{{attachment.name}}</a> + {% endfor %}<br /> + Content: <a href="/collagen/view/content/{{prop.id}}">list</a> + </div> + <br /> + {% endfor %} + + +{% else %} + No information available +{% endif %} + +{% endblock %} |