summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'python/templates/pages/packages/ebuilds/ebuild/index.html')
-rw-r--r--python/templates/pages/packages/ebuilds/ebuild/index.html33
1 files changed, 26 insertions, 7 deletions
diff --git a/python/templates/pages/packages/ebuilds/ebuild/index.html b/python/templates/pages/packages/ebuilds/ebuild/index.html
index e000a53..4752be1 100644
--- a/python/templates/pages/packages/ebuilds/ebuild/index.html
+++ b/python/templates/pages/packages/ebuilds/ebuild/index.html
@@ -9,13 +9,6 @@
<td class="frontpage-table-package-atom">
<p" title="{{ E.PackageId.CategoryId.Category }}/{{ E.PackageId.Package }}-{{ E.EbuildId.Version }}::{{ E.PackageId.RepoId.Repo }}">{{ E.PackageId.Package }}-{{ E.Version }}::{{ E.PackageId.RepoId.Repo }}</p>
<a class="btn btn-default btn-xs" href="/buildpackage/{{ E.EbuildId.EbuildId }}/">Build</a>
- {% for BL in BL_tmp %}
- {% if BL.Fail %}
- <a class="btn btn-danger btn-xs" href="/buildlog/{{ BL.BuildLogId }}/">Fail</a>
- {% else %}
- <a class="btn btn-success btn-xs" href="/buildlog/{{ BL.BuildLogId }}/">Success</a>
- {% endif %}
- {% endfor %}
</td>
<td>
{% for K in EK_tmp %}
@@ -43,5 +36,31 @@
{% endfor %}
</table>
</div>
+ <div class="col-xs-12 col-md-9">
+ <table class="table table-striped frontpage-table">
+ {% for BL in BL_tmp %}
+ <tr>
+ <td class="frontpage-table-package-atom">
+ {% if BL.Fail %}
+ <span class="label label-danger">Build</span>
+ {% else %}
+ <span class="label label-success">Build</span>
+ {% endif %}
+ {% for BLR in BLR_tmp %}
+ {% if BLR.BuildLogId.BuildLogId == BL.BuildLogId%}
+ <span class="label label-danger">Repoman</span>
+ {% endif %}
+ {% endfor %}
+ {% for BLQ in BLQ_tmp %}
+ {% if BLQ.BuildLogId.BuildLogId == BL.BuildLogId%}
+ <span class="label label-danger">Qa</span>
+ {% endif %}
+ {% endfor %}
+ <a class="btn btn-default btn-xs" href="/new/logs/build/{{ BL.BuildLogId }}/">More info</a>
+ </td>
+ </tr>
+ {% endfor %}
+ </table>
+ </div>
</div>
{% endblock %} \ No newline at end of file