##// END OF EJS Templates
#71 code-review...
#71 code-review - simple inline comments

File last commit:

r1677:7276b170 beta
r1677:7276b170 beta
Show More
changeset_file_comment.html
51 lines | 1.8 KiB | text/html | HtmlLexer
/ rhodecode / templates / changeset / changeset_file_comment.html
#77 code review...
r1670 ##usage:
## <%namespace name="comment" file="/changeset/changeset_file_comment.html"/>
## ${comment.comment_block(co)}
##
<%def name="comment_block(co)">
<div class="comment" id="comment-${co.comment_id}">
<div class="meta">
<span class="user">
<img src="${h.gravatar_url(co.author.email, 20)}" />
${co.author.username}
</span>
<a href="${h.url.current(anchor='comment-%s' % co.comment_id)}"> ${_('commented on')} </a>
code refactoring
r1675 ${h.short_id(co.revision)}
#77 code review...
r1670 %if co.f_path:
${_(' in file ')}
#71 code-review...
r1677 ${co.f_path}:L ${co.line_no}
#77 code review...
r1670 %endif
<span class="date">
${h.age(co.modified_at)}
</span>
</div>
<div class="text">
%if h.HasPermissionAny('hg.admin', 'repository.admin')() or co.author.user_id == c.rhodecode_user.user_id:
<div class="buttons">
#71 code review...
r1674 <span onClick="deleteComment(${co.comment_id})" class="delete-comment ui-button-small">${_('Delete')}</span>
#77 code review...
r1670 </div>
%endif
${h.rst(co.text)|n}
</div>
</div>
#71 code-review...
r1677 </%def>
<%def name="comment_inline_form()">
<div id='comment-inline-form-template' style="display:none">
<div class="comment-inline-form">
${h.form(h.url('changeset_comment', repo_name=c.repo_name, revision=c.changeset.raw_id))}
<div class="clearfix">
<div class="comment-help">${_('Commenting on line')} {1} ${_('comments parsed using RST syntax')}</div>
${h.textarea('text')}
</div>
<div class="comment-button">
<input type="hidden" name="f_path" value="{0}">
<input type="hidden" name="line" value="{1}">
${h.submit('save', _('Comment'), class_='ui-button-small')}
${h.reset('hide-inline-form', _('Hide'), class_='ui-button-small hide-inline-form')}
</div>
${h.end_form()}
</div>
</div>
#77 code review...
r1670 </%def>