comparison rhodecode/templates/admin/users/user_edit_my_account_pullrequests.html @ 3394:fe2bb88bf7ac beta

whitespace cleanup
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 21 Feb 2013 02:31:21 +0100
parents 1c4505e3be5b
children 7854097b189c
comparison
equal deleted inserted replaced
3393:f2425f427f8e 3394:fe2bb88bf7ac
7 <div style="height: 12px"> 7 <div style="height: 12px">
8 <div style="float:left"> 8 <div style="float:left">
9 %if pull_request.is_closed(): 9 %if pull_request.is_closed():
10 <img src="${h.url('/images/icons/lock_go.png')}" title="${_('Closed')}"/> 10 <img src="${h.url('/images/icons/lock_go.png')}" title="${_('Closed')}"/>
11 %endif 11 %endif
12 <img src="${h.url('/images/icons/flag_status_%s.png' % str(pull_request.last_review_status))}" /> 12 <img src="${h.url('/images/icons/flag_status_%s.png' % str(pull_request.last_review_status))}" />
13 <a href="${h.url('pullrequest_show',repo_name=pull_request.other_repo.repo_name,pull_request_id=pull_request.pull_request_id)}"> 13 <a href="${h.url('pullrequest_show',repo_name=pull_request.other_repo.repo_name,pull_request_id=pull_request.pull_request_id)}">
14 ${_('Pull request #%s opened on %s') % (pull_request.pull_request_id, h.fmt_date(pull_request.created_on))} 14 ${_('Pull request #%s opened on %s') % (pull_request.pull_request_id, h.fmt_date(pull_request.created_on))}
15 </a> 15 </a>
16 </div> 16 </div>
17 <div style="float:left;margin-top: -5px"> 17 <div style="float:left;margin-top: -5px">
34 <li> 34 <li>
35 <div style="height: 12px"> 35 <div style="height: 12px">
36 %if pull_request.is_closed(): 36 %if pull_request.is_closed():
37 <img src="${h.url('/images/icons/lock_go.png')}" title="${_('Closed')}"/> 37 <img src="${h.url('/images/icons/lock_go.png')}" title="${_('Closed')}"/>
38 %endif 38 %endif
39 <img src="${h.url('/images/icons/flag_status_%s.png' % str(pull_request.last_review_status))}" /> 39 <img src="${h.url('/images/icons/flag_status_%s.png' % str(pull_request.last_review_status))}" />
40 <a href="${h.url('pullrequest_show',repo_name=pull_request.other_repo.repo_name,pull_request_id=pull_request.pull_request_id)}"> 40 <a href="${h.url('pullrequest_show',repo_name=pull_request.other_repo.repo_name,pull_request_id=pull_request.pull_request_id)}">
41 ${_('Pull request #%s opened by %s on %s') % (pull_request.pull_request_id, pull_request.author.full_name, h.fmt_date(pull_request.created_on))} 41 ${_('Pull request #%s opened by %s on %s') % (pull_request.pull_request_id, pull_request.author.full_name, h.fmt_date(pull_request.created_on))}
42 </a> 42 </a>
43 </div> 43 </div>
44 </li> 44 </li>