##// END OF EJS Templates
Switched handling of RhodeCode extra params in consistent way...
Switched handling of RhodeCode extra params in consistent way - use only os.environ for both hg and git - hacking ui objects was bad - os.environ allows easier to call rhodecode hooks externally

File last commit:

r3430:bbe21df7 beta
r3577:238486bb beta
Show More
changeset_comment.html
17 lines | 401 B | text/html | HtmlLexer
## -*- coding: utf-8 -*-
<%inherit file="main.html"/>
##message from user goes here
<p>
${cs_comment_user}: <br/>
${body}
</p>
%if status_change:
<span>${_('New status')} -&gt; ${status_change}</span>
%endif
<div>${_('View this comment here')}: ${cs_comment_url}</div>
<pre>
${_('Repo')}: ${cs_target_repo}
${_('Changeset')}: ${h.short_id(raw_id)}
${_('desc')}: ${h.shorter(message, 256)}
</pre>