view rhodecode/templates/pullrequests/pullrequest_show_all.html @ 2673:d5e42c00f3c1 beta

white space cleanup
author Marcin Kuzminski <marcin@python-works.com>
date Fri, 27 Jul 2012 01:06:50 +0200
parents 58c529332e7e
children 99cb0cf75a4c
line wrap: on
line source

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

<%def name="title()">
    ${c.repo_name} ${_('all pull requests')}
</%def>

<%def name="breadcrumbs_links()">
    ${h.link_to(_(u'Home'),h.url('/'))}
    &raquo;
    ${h.link_to(c.repo_name,h.url('changelog_home',repo_name=c.repo_name))}
    &raquo;
    ${_('All pull requests')}
</%def>

<%def name="main()">

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

    %for pr in c.pull_requests:
        <div>
          <h4>
          %if pr.is_closed():
          <img src="${h.url('/images/icons/tick.png')}" alt="${_('Closed')}" />
          %endif
          <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>
    %endfor

</div>

<script type="text/javascript"></script>

</%def>