##// END OF EJS Templates
fixed user permissions bug when adding permissions to user who couldn load those because of auth decorators...
fixed user permissions bug when adding permissions to user who couldn load those because of auth decorators Small fix for hg model and injecting dbrepo into cached repos

File last commit:

r362:558eb7c5 rhodecode-0.0.0.8.0 default
r368:e9a6783f default
Show More
tags_data.html
28 lines | 877 B | text/html | HtmlLexer
%if c.repo_tags:
<table>
<tr>
<th class="left">${_('date')}</th>
<th class="left">${_('revision')}</th>
<th class="left">${_('name')}</th>
<th class="left">${_('links')}</th>
</tr>
%for cnt,tag in enumerate(c.repo_tags.items()):
<tr class="parity${cnt%2}">
<td>${h.age(tag[1]._ctx.date())}</td>
<td>r${tag[1].revision}:${tag[1].raw_id}</td>
<td>
<span class="logtags">
<span class="tagtag">${h.link_to(tag[0],
h.url('changeset_home',repo_name=c.repo_name,revision=tag[1].raw_id))}</span>
</span>
</td>
<td class="nowrap">
${h.link_to(_('changeset'),h.url('changeset_home',repo_name=c.repo_name,revision=tag[1].raw_id))}
|
${h.link_to(_('files'),h.url('files_home',repo_name=c.repo_name,revision=tag[1].raw_id))}
</td>
</tr>
%endfor
</table>
%else:
${_('There are no tags yet')}
%endif