diff --git a/rhodecode/templates/pullrequests/pullrequest_show.html b/rhodecode/templates/pullrequests/pullrequest_show.html --- a/rhodecode/templates/pullrequests/pullrequest_show.html +++ b/rhodecode/templates/pullrequests/pullrequest_show.html @@ -21,38 +21,62 @@

${_('Title')}: ${c.pull_request.title}

-
+
%if c.current_changeset_status:
[${h.changeset_status_lbl(c.current_changeset_status)}]
%endif
-
+
${h.fmt_date(c.pull_request.created_on)}
- ##DIFF - -
-
-
${h.literal(c.pull_request.description)}
-
-
- ##CS -
${_('Incoming changesets')}
- <%include file="/compare/compare_cs.html" /> - - ## FILES -
${_('Files affected')}
-
- %for fid, change, f, stat in c.files: -
-
${h.link_to(h.safe_unicode(f),h.url.current(anchor=fid))}
-
${h.fancy_file_stats(stat)}
+ ## REVIEWERS +
+
+
+
${_('Pull request reviewers')}
+
+
+
+
    + %for user,status in c.pull_request_reviewers: +
  • +
    +
    + +
    +
    gravatar
    +
    ${user.username}
    +
  • %endfor -
-
+ +
+
+
+ ##DIFF +
+
+
${h.literal(c.pull_request.description)}
+
+
+ ##CS +
${_('Incoming changesets')}
+ <%include file="/compare/compare_cs.html" /> + + ## FILES +
${_('Files affected')}
+
+ %for fid, change, f, stat in c.files: +
+
${h.link_to(h.safe_unicode(f),h.url.current(anchor=fid))}
+
${h.fancy_file_stats(stat)}
+
+ %endfor +
+
+