diff --git a/rhodecode/templates/pullrequests/pullrequest.html b/rhodecode/templates/pullrequests/pullrequest.html --- a/rhodecode/templates/pullrequests/pullrequest.html +++ b/rhodecode/templates/pullrequests/pullrequest.html @@ -19,7 +19,8 @@
${self.breadcrumbs()}
-
+ ${h.form(url('#'),method='put', id='pull_request_form')} +
##ORG
@@ -27,14 +28,14 @@ gravatar
- ${h.select('other','',['%s/%s' % (c.rhodecode_db_repo.user.username,c.repo_name)])}:${h.select('other_ref','',c.org_refs)} + ${h.select('org_repo','',c.org_repos,class_='refs')}:${h.select('org_ref','',c.org_refs,class_='refs')}
${c.rhodecode_db_repo.description}
- +
##OTHER, most Probably the PARENT OF THIS FORK @@ -44,16 +45,65 @@ gravatar
- ${h.select('orther','',c.sources)}:${h.select('other_ref','',c.org_refs)} + ${h.select('other_repo','',c.other_repos,class_='refs')}:${h.select('other_ref','',c.other_refs,class_='refs')}
${c.rhodecode_db_repo.description}
+
+ + + ${_('Refresh')} + ${_('refresh overview')} + + +
+
+
+
- -

${_('New pull request')} from USER:REF into PARENT:REF

- ${h.form(url('#'),method='put')} +
+

${_('Pull request reviewers')}

+
+ ##TODO: make this nicer :) + + + + +
+
+
+
${_('Choosen reviewers')}
+ ${h.select('review_members',[x[0] for x in c.review_members],c.review_members,multiple=True,size=8,style="min-width:210px")} +
+ ${_('Remove all elements')} + remove +
+
+
+ add +
+ remove +
+
+
${_('Available reviewers')}
+ ${h.select('available_members',[],c.available_members,multiple=True,size=8,style="min-width:210px")} +
+ add + ${_('Add all elements')} +
+
+
+
+
+
+

${_('Create new pull request')}

+
@@ -85,7 +135,51 @@
${h.end_form()} - + +