diff --git a/rhodecode/templates/pullrequests/pullrequest.html b/rhodecode/templates/pullrequests/pullrequest.html
new file mode 100644
--- /dev/null
+++ b/rhodecode/templates/pullrequests/pullrequest.html
@@ -0,0 +1,189 @@
+<%inherit file="/base/base.html"/>
+
+<%def name="title()">
+ ${c.repo_name} ${_('New pull request')}
+%def>
+
+<%def name="breadcrumbs_links()">
+ ${h.link_to(_(u'Home'),h.url('/'))}
+ »
+ ${h.link_to(c.repo_name,h.url('changelog_home',repo_name=c.repo_name))}
+ »
+ ${_('New pull request')}
+%def>
+
+<%def name="main()">
+
+
+
+
+ ${self.breadcrumbs()}
+
+ ${h.form(url('pullrequest', repo_name=c.repo_name), method='post', id='pull_request_form')}
+
+
+ ##ORG
+
+
+
+
})
+
+
+ ${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
+
+
+
+
![gravatar]()
+
+
+ ${h.select('other_repo',c.default_pull_request ,c.other_repos,class_='refs')}:${h.select('other_ref','',c.default_revs,class_='refs')}
+
+
+
+
+
+
+ ## overview pulled by ajax
+
+
+
+
+
${_('Pull request reviewers')}
+
+ ## members goes here !
+
+
+ %for member in c.review_members:
+ -
+
+
+
${member.full_name} (${_('owner')})
+
+
+
+
+ %endfor
+
+
+
+
+
+ ${h.text('user', class_='yui-ac-input')}
+
${_('Add reviewer to this pull request.')}
+
+
+
+
+
+
${_('Create new pull request')}
+
+
+ ${h.end_form()}
+
+
+
+
+
+%def>