view rhodecode/templates/pullrequests/pullrequest_show_all.html @ 3713:e45f8cefd7d9 beta

implement __ne__
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 08 Apr 2013 20:38:37 +0200
parents 9d2db665ef31
children 072a37c44f58
line wrap: on
line source

<%inherit file="/base/base.html"/>

<%def name="title()">
    ${_('%s Pull Requests') % c.repo_name} &middot; ${c.rhodecode_name}
</%def>

<%def name="breadcrumbs_links()">
    ${_('Pull requests')}
</%def>

<%def name="page_nav()">
    ${self.menu('repositories')}
</%def>

<%def name="main()">
${self.context_bar('showpullrequest')}

<div class="box">
    <!-- box / title -->
    <div class="title">
        ${self.breadcrumbs()}
    </div>
    ${c.pullrequest_data}
</div>

</%def>