<%inherit file="/base/base.html"/> <%def name="title()"> ${c.repo_name} ${_('New pull request')} <%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 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.default_org_ref,c.org_refs,class_='refs')}
${c.rhodecode_db_repo.description}
##OTHER, most Probably the PARENT OF THIS FORK
${h.select('other_repo',c.default_other_repo,c.other_repos,class_='refs')}:${h.select('other_ref',c.default_other_ref,c.default_other_refs,class_='refs')}
## overview pulled by ajax
${_('Detailed compare view')}

${_('Pull request reviewers')}

## members goes here !
    %for member in c.review_members:
  • gravatar
    ${member.full_name} (${_('owner')})
  • %endfor
${h.text('user', class_='yui-ac-input')} ${_('Add reviewer to this pull request.')}

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

${h.text('pullrequest_title',size=30)}
${h.textarea('pullrequest_desc',size=30)}
${h.submit('save',_('Send pull request'),class_="ui-btn large")} ${h.reset('reset',_('Reset'),class_="ui-btn large")}
${h.end_form()}