blob: 73f45f253a96035f6b2a8bc6f8deeef36aabc1d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 EM_tmp %}
<tr>
<td class="frontpage-table-package-atom">
<a href="/ebuild/{{ E.EbuildId.EbuildId }}/" title="{{ P.CategoryId.Category }}/{{ P.Package }}-{{ E.EbuildId.Version }}::{{ E.EbuildId.PackageId.RepoId.Repo }}">{{ P.Package }}-{{ E.EbuildId.Version }}::{{ E.EbuildId.PackageId.RepoId.Repo }}</a></td>
<td><p></p></td>
</tr>
{% endfor %}
</table>
</div>
</div>
{% endblock %}
|