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 @@ -35,32 +35,9 @@
${_('Created on')}: ${h.fmt_date(c.pull_request.created_on)}
- ## REVIEWERS
-
-
-
${_('Pull request reviewers')}
-
-
-
-
    - %for user,status in c.pull_request_reviewers: -
  • -
    -
    - -
    -
    gravatar
    -
    ${user.username}
    -
    -
  • - %endfor -
-
-
-
##DIFF -
+
${_('Compare view')}
@@ -81,12 +58,51 @@
+ ## REVIEWERS +
+

${_('Pull request reviewers')}

+
+ ## members goes here ! +
+
    + %for member,status in c.pull_request_reviewers: +
  • +
    +
    + +
    +
    gravatar
    +
    ${member.full_name} (${_('owner')})
    + + %if not c.pull_request.is_closed(): + + %endif +
    +
  • + %endfor +
+
+ %if not c.pull_request.is_closed(): +
+
+ ${h.text('user', class_='yui-ac-input')} + ${_('Add reviewer to this pull request.')} +
+
+
+ ${_('save')} +
+
+ %endif +
+
## diff block @@ -112,6 +128,7 @@