comparison 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
comparison
equal deleted inserted replaced
2672:169807710db2 2673:d5e42c00f3c1
23 %for pr in c.pull_requests: 23 %for pr in c.pull_requests:
24 <div> 24 <div>
25 <h4> 25 <h4>
26 %if pr.is_closed(): 26 %if pr.is_closed():
27 <img src="${h.url('/images/icons/tick.png')}" alt="${_('Closed')}" /> 27 <img src="${h.url('/images/icons/tick.png')}" alt="${_('Closed')}" />
28 %endif 28 %endif
29 <a href="${h.url('pullrequest_show',repo_name=c.repo_name,pull_request_id=pr.pull_request_id)}"> 29 <a href="${h.url('pullrequest_show',repo_name=c.repo_name,pull_request_id=pr.pull_request_id)}">
30 ${_('Pull request #%s opened by %s on %s') % (pr.pull_request_id, pr.author.full_name, h.fmt_date(pr.created_on))} 30 ${_('Pull request #%s opened by %s on %s') % (pr.pull_request_id, pr.author.full_name, h.fmt_date(pr.created_on))}
31 </a> 31 </a>
32 </h4> 32 </h4>
33 <h5 style="border:0px;padding-bottom:0px">${_('Title')}: ${pr.title}</h5> 33 <h5 style="border:0px;padding-bottom:0px">${_('Title')}: ${pr.title}</h5>