diff options
Diffstat (limited to 'python/templates/pages/logs/build/index.html')
-rw-r--r-- | python/templates/pages/logs/build/index.html | 114 |
1 files changed, 0 insertions, 114 deletions
diff --git a/python/templates/pages/logs/build/index.html b/python/templates/pages/logs/build/index.html deleted file mode 100644 index 0bbc96b..0000000 --- a/python/templates/pages/logs/build/index.html +++ /dev/null @@ -1,114 +0,0 @@ -{% extends "layout/base.html" %} -{% block content %} -<div class="row"> - <h2>{{ BLI.C }}/{{ BLI.P }}-{{ BLI.V }}::{{ BLI.R }} - {% if FI.others %} - <span class="label label-info">Others</span> - {% else %} - {% if FI.qa %} - <span class="label label-warning"> - {% else %} - <span class="label label-success"> - {% endif %} - Qa</span> - {% if FI.repoman %} - <span class="label label-warning"> - {% else %} - <span class="label label-success"> - {% endif %} - Repoman</span> - {% if FI.TestRun %} - {% if FI.test %} - <span class="label label-danger"> - {% else %} - <span class="label label-success"> - {% endif %} - Test</span> - {% endif %} - {% if FI.build %} - <span class="label label-danger">{{ FI.builderror }} - {% else %} - <span class="label label-success">Build - {% endif %} - </span> - {% endif %} - </h2> - {% if BLI.BugId %} - <span class="label label-info"> - <a href="https://bugs.gentoo.org/show_bug.cgi?id={{ BLI.BugId}}" target=_blank>Bug Gentoo {{ BLI.BugId }}</a> - </span> - {% endif %} -</div> -<div class="row-fluid"> - <div class=span3> - <p class="lead">Host information</p> - Host: {{ BLI.hostname }}<br /> - Config: {{BLI.config }}<br /> - Profile: {{BLI.profile }}<br/> - Emerge options : - </div> - {% if BLI.use_enable %} - <div class="span3 "> - <p class="lead">Enabled useflags</p> - {% for use in BLI.use_enable %} - {{ use }} - {% endfor %} - </div> - {% endif %} - {% if BLI.use_disable %} - <div class=span3> - <p class="lead">Disabled useflags</p> - {% for use in BLI.use_disable %} - {{ use }} - {% endfor %} - </div> -{% endif %} - </div> - <div class="row-fluid"> - <div class=span12> - {% if BLI.Summery_text %} - <p class="lead">Summery: </p> - {{ BLI.Summery_text|linebreaks }} - {% endif %} - </div> - </div> - <div class="row-fluid"> - <div class=span12> - {% if BLI.Repoman %} - <p class="lead">Repoman Summery: </p> - {{ BLI.Repoman|linebreaks }} - {% endif %} - </div> - </div> - <div class="row-fluid"> - <div class=span12> - {% if BLI.QA %} - <p class="lead">QA Summery: </p> - {{ BLI.QA|linebreaks }} - {% endif %} - </div> - </div> - <div class="row-fluid"> - <div class=span12> - <p class="lead">Emerge Info: </p> - {{ BLI.emerge_info_text|linebreaks }} - </div> - </div> - <div class="row-fluid"> - <div class="span12"> - {% if BLI.logname %} - <br /> - Log file name:{{ BLI.logname }}<br /> - <a href="{{ STATIC_URL }}/logs/{{BLI.hostname}}/{{BLI.config}}/{{ BLI.logname }}">Raw log<a/><br /> - {% if user.is_authenticated %} - {% if bugzillalogin %} - <a href="/logs/build/submitlog/{{BLI.BuildLogId}}/"> - {% else %} - <a href="/user/bugzillalogin/"> - {% endif %} - Summit log to Gentoo's bugzilla</a> - {% endif %} - {% endif %} - </div> - </div> -{% endblock %} |