## -*- coding: utf-8 -*- ## usage: ## <%namespace name="comment" file="/changeset/changeset_file_comment.html"/> ## ${comment.comment_block(comment)} ## <%namespace name="base" file="/base/base.html"/> <%def name="comment_block(comment, inline=False)"> <% outdated_at_ver = comment.outdated_at_version(getattr(c, 'at_version', None)) %>
${base.gravatar_with_user(comment.author.email, 16)}
${h.age_component(comment.modified_at, time_is_local=True)}
%if comment.status_change:
${comment.status_change[0].status_lbl}
%endif
${comment.render(mentions=True)|n}
## generate main comments <%def name="generate_comments(include_pull_request=False, is_pull_request=False)">
%for comment in c.comments:
## only render comments that are not from pull request, or from ## pull request and a status change %if not comment.pull_request or (comment.pull_request and comment.status_change) or include_pull_request: ${comment_block(comment)} %endif
%endfor ## to anchor ajax comments
## MAIN COMMENT FORM <%def name="comments(post_url, cur_status, is_pull_request=False, is_compare=False, change_status=True, form_extras=None)"> %if is_compare: <% form_id = "comments_form_compare" %> %else: <% form_id = "comments_form" %> %endif %if is_pull_request:
%if c.allowed_to_merge:
${h.secure_form(url('pullrequest_merge', repo_name=c.repo_name, pull_request_id=c.pull_request.pull_request_id), id='merge_pull_request_form')} ${c.pr_merge_msg} ${c.approval_msg if c.approval_msg else ''} <% merge_disabled = ' disabled' if c.pr_merge_status is False else '' %> ${h.end_form()}
%else:
${c.pr_merge_msg} ${c.approval_msg if c.approval_msg else ''}
%endif
%endif
<% if is_pull_request: placeholder = _('Leave a comment on this Pull Request.') elif is_compare: placeholder = _('Leave a comment on all commits in this range.') else: placeholder = _('Leave a comment on this Commit.') %> % if c.rhodecode_user.username != h.DEFAULT_USER:
${h.secure_form(post_url, id_=form_id)}
%if form_extras and isinstance(form_extras, (list, tuple)): % for form_ex_el in form_extras: ${form_ex_el|n} % endfor %endif
${h.end_form()}
% else:
${_('You need to be logged in to leave comments.')} ${_('Login now')}
% endif