debian-koji/www/kojiweb/externalrepoinfo.chtml

31 lines
656 B
Text

#from kojiweb import util
#include "includes/header.chtml"
<h4>Information for external repo <a href="externalrepoinfo?extrepoID=$extRepo.id">$extRepo.name</a></h4>
<table>
<tr>
<th>Name</th><td>$extRepo.name</td>
</tr>
<tr>
<th>ID</th><td>$extRepo.id</td>
</tr>
<tr>
<th>URL</th><td><a href="$extRepo.url">$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">$tag.tag_name</a><br/>
#end for
#else
No tags
#end if
</td>
</tr>
</table>
#include "includes/footer.chtml"