debian-koji/www/kojiweb/externalrepoinfo.chtml
2022-02-07 09:36:59 +01:00

31 lines
746 B
Text

#from kojiweb import util
#include "includes/header.chtml"
<h4>Information for external repo <a href="externalrepoinfo?extrepoID=$extRepo.id">$util.escapeHTML($extRepo.name)</a></h4>
<table>
<tr>
<th>Name</th><td>$util.escapeHTML($extRepo.name)</td>
</tr>
<tr>
<th>ID</th><td>$extRepo.id</td>
</tr>
<tr>
<th>URL</th><td><a href="$util.escapeHTML($extRepo.url)">$util.escapeHTML($extRepo.url)</a></td>
</tr>
<tr>
<th>Tags using this external repo</th>
<td>
#if $len($repoTags)
#for $tag in $repoTags
<a href="taginfo?tagID=$tag.tag_id">$util.escapeHTML($tag.tag_name)</a><br/>
#end for
#else
No tags
#end if
</td>
</tr>
</table>
#include "includes/footer.chtml"