diff options
author | 2015-07-22 00:57:00 +0200 | |
---|---|---|
committer | 2015-07-22 00:57:00 +0200 | |
commit | 2251b1ad2020d70c58d01fdcefb087dd8838db1c (patch) | |
tree | 653027c19cb72a0213df32945aa1195ea2882140 /python/templates/pages/packages/ebuilds | |
parent | fix a error to display setup/profiles in new build requests in home (diff) | |
download | tinderbox-cluster-www-2251b1ad2020d70c58d01fdcefb087dd8838db1c.tar.gz tinderbox-cluster-www-2251b1ad2020d70c58d01fdcefb087dd8838db1c.tar.bz2 tinderbox-cluster-www-2251b1ad2020d70c58d01fdcefb087dd8838db1c.zip |
add package and new to menu
Diffstat (limited to 'python/templates/pages/packages/ebuilds')
-rw-r--r-- | python/templates/pages/packages/ebuilds/index.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/python/templates/pages/packages/ebuilds/index.html b/python/templates/pages/packages/ebuilds/index.html new file mode 100644 index 0000000..a5ed0d6 --- /dev/null +++ b/python/templates/pages/packages/ebuilds/index.html @@ -0,0 +1,17 @@ +{% extends "layout/base.html" %} +{% block content %} +<div class="row"> + <div class="col-xs-12 col-md-6"> + <h2>{{ P.CategoryId.Category }}/{{ P.Package }}</h2> + <table class="table table-striped frontpage-table"> + {% for E in EB_tmp %} + <tr> + <td class="frontpage-table-package-atom"> + <a href="/ebuild/{{ E.EbuildId }}/" title="{{ P.CategoryId.Category }}/{{ P.Package }}-{{ E.Version }}::{{ E.PackageId.RepoId.Repo }}">{{ P.Package }}-{{ E.Version }}::{{ E.PackageId.RepoId.Repo }}</a></td> + <td><p></p></td> + </tr> + {% endfor %} +</table> + </div> +</div> +{% endblock %}
\ No newline at end of file |