<%inherit file="/base/base.html"/> <%namespace name="pullrequest_data" file="pullrequest_data.html"/> <%block name="title"> ${_('My Pull Requests')} <%def name="breadcrumbs_links()"> ${_('My Pull Requests')} <%block name="header_menu"> ${self.menu('my_pullrequests')} <%def name="main()">
${self.breadcrumbs()}
%if c.closed: ${h.link_to(_('Hide closed pull requests (only show open pull requests)'), h.url('my_pullrequests'))} %else: ${h.link_to(_('Show closed pull requests (in addition to open pull requests)'), h.url('my_pullrequests',closed=1))} %endif

${_('Pull Requests Created by Me')}

${pullrequest_data.pullrequest_overview(c.my_pull_requests)}

${_('Pull Requests Needing My Review')}

${pullrequest_data.pullrequest_overview(c.participate_in_pull_requests_todo)}

${_('Pull Requests I Participate In')}

${pullrequest_data.pullrequest_overview(c.participate_in_pull_requests)}