##// END OF EJS Templates
show admin menu and list for users who are admins of repos....
show admin menu and list for users who are admins of repos. - this is consistent with user groups, repo groups displaying. - fixes 403s after you actually delete a repository being it's admin

File last commit:

r3780:1de8abd9 beta
r3865:100be698 beta
Show More
changeset_comment.html
18 lines | 468 B | text/html | HtmlLexer
## -*- coding: utf-8 -*-
<%inherit file="main.html"/>
<p>${_('URL')}: <a href="${cs_comment_url}">${cs_comment_url}</a></p>
<h4>${_('%s commented on a %s changeset.') % (cs_comment_user,cs_target_repo) |n}</h4>
<p>${_('Changeset')}: ${h.short_id(raw_id)}</p>
<p>${_('Description')}:<br/>
${h.shorter(message, 256)}
</p>
%if status_change:
<p>${_('The changeset status was changed to')}: <b>${status_change}</b></p>
%endif
<p>${_('Comment')}:<br/>
${body}
</p>