diff options
author | 2021-05-31 01:16:54 +0200 | |
---|---|---|
committer | 2021-09-24 04:22:49 +0200 | |
commit | 5e84cbca6ca8f525703c062f7e824f2c60ed4bc7 (patch) | |
tree | 0c3a689bde470120e19a2d6d25512d1974e4c741 /python/templates/pages/packages/ebuilds/index.html | |
parent | Update code to use gosbs backend (diff) | |
download | tinderbox-cluster-www-5e84cbca6ca8f525703c062f7e824f2c60ed4bc7.tar.gz tinderbox-cluster-www-5e84cbca6ca8f525703c062f7e824f2c60ed4bc7.tar.bz2 tinderbox-cluster-www-5e84cbca6ca8f525703c062f7e824f2c60ed4bc7.zip |
Restart
Signed-off-by: Magnus Granberg <zorry@gentoo.org>
Diffstat (limited to 'python/templates/pages/packages/ebuilds/index.html')
-rw-r--r-- | python/templates/pages/packages/ebuilds/index.html | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/python/templates/pages/packages/ebuilds/index.html b/python/templates/pages/packages/ebuilds/index.html deleted file mode 100644 index 630b524..0000000 --- a/python/templates/pages/packages/ebuilds/index.html +++ /dev/null @@ -1,30 +0,0 @@ -{% extends "layout/base.html" %} -{% block content %} -<div class="row"> - <div class="col-xs-12 col-md-9"> - <h2>{{ P.PackageId.CategoryId.Category }}/{{ P.PackageId.Package }}</h2> - <p>Commit log</p> - <p>{{ P.Gitlog|linebreaksbr }}</p> - <table class="table table-striped frontpage-table"> - {% for E in EM_tmp %} - <tr> - <td class="frontpage-table-package-atom"> - <a href="/ebuild/{{ E.EbuildId.EbuildId }}/" title="{{ P.PackageId.CategoryId.Category }}/{{ P.PackageId.Package }}-{{ E.EbuildId.Version }}::{{ E.EbuildId.PackageId.RepoId.Repo }}">{{ P.PackageId.Package }}-{{ E.EbuildId.Version }}::{{ E.EbuildId.PackageId.RepoId.Repo }}</a></td> - <td> - {% for K in EK_tmp %} - {% if K.EbuildId.EbuildId == E.EbuildId.EbuildId and K.KeywordId.Keyword != '*' %} - {% if K.Status == 'Stable' %}<span class="label label-success">{{ K.KeywordId.Keyword }}</span>{% endif %} - {% if K.Status == 'Unstable' %}<span class="label label-warning">{{ K.KeywordId.Keyword }}</span>{% endif %} - {% if K.Status == 'Negative' %}{{ K.KeywordId.Keyword }}{% endif %} - {% endif %} - {% endfor %} - </td> - </tr> - {% endfor %} - </table> - </div> - {% if PR %} - <a class="btn btn-warning btn-xs" href="/repoman/{{P.PackageId.PackageId }}/">Repoman</a> - {% endif %} -</div> -{% endblock %}
\ No newline at end of file |