blob: 5b3607becffe4992651b7d8b78cd86211ad96d70 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<table class="table table-striped frontpage-table">
{% for QA in QA_tmp %}
<tr>
<td class="frontpage-table-package-atom"><a href="/logs/build/{{ QA.BuildLogId.BuildLogId }}">
{{ QA.BuildLogId.EbuildId.PackageId.CategoryId.Category }}/{{ QA.BuildLogId.EbuildId.PackageId.Package }}::{{ QA.BuildLogId.EbuildId.PackageId.RepoId.Repo }}</a>
</td>
<td><p title="{{ QA.SummeryText }}">{{ QA.SummeryText|truncatewords:3 }}</p></td>
</tr>
{% endfor %}
</table>
|