view rhodecode/templates/pullrequests/pullrequest_show_all.html @ 3595:9bc052942640 beta

pullrequests: fix non-js defaults for repo owner Owner of default_other_repo was never sent to the the template ... and the template would fail if it had been sent. Instead we set default_other_repo_info to the other_repos_info struct and use that to find the owner.
author Mads Kiilerich <madski@unity3d.com>
date Tue, 26 Mar 2013 01:23:35 +0100
parents 1f334a68d057
children 2ea981f9da79
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="main()">
${self.context_bar('showpullrequest')}
<div class="box">
    <!-- box / title -->
    <div class="title">
        ${self.breadcrumbs()}
    </div>

    %for pr in c.pull_requests:
        <div>
          <h4  style="border:0px;padding:0px">
            %if pr.is_closed():
                <img src="${h.url('/images/icons/lock_go.png')}" title="${_('Closed')}"/>
            %endif
            <img src="${h.url('/images/icons/flag_status_%s.png' % str(pr.last_review_status))}" />
            <a href="${h.url('pullrequest_show',repo_name=c.repo_name,pull_request_id=pr.pull_request_id)}">
            ${_('Pull request #%s opened by %s on %s') % (pr.pull_request_id, pr.author.full_name, h.fmt_date(pr.created_on))}
            </a>
          </h4>
          <h5 style="border:0px;padding-bottom:0px">${_('Title')}: ${pr.title}</h5>
          <div style="padding:0px 24px">${pr.description}</div>
          <div style="border-bottom: 1px solid #DDD;margin:10px 20px;padding-bottom:10px"></div>
        </div>
    %endfor

</div>

</%def>