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