comparison rhodecode/templates/admin/users/user_edit_my_account_pullrequests.html @ 2624:19daa8d761dc beta

Improvements to my account page - lazy load repositories via ajax results in much faster page load - added pull requests tab to see my pullrequests and the ones i participate in - new style tabs
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 16 Jul 2012 23:19:34 +0200
parents
children 129beb0062c2
comparison
equal deleted inserted replaced
2623:44678a64cfae 2624:19daa8d761dc
1
2 <div class="pullrequests_section_head">${_('Opened by me')}</div>
3 <ul>
4 %for pull_request in c.my_pull_requests:
5 <li>
6 <a href="${h.url('pullrequest_show',repo_name=pull_request.org_repo.repo_name,pull_request_id=pull_request.pull_request_id)}">
7 ${_('Pull request #%s opened on %s') % (pull_request.pull_request_id, h.fmt_date(pull_request.created_on))}
8 </a>
9 </li>
10 %endfor
11 </ul>
12
13 <div class="pullrequests_section_head">${_('I participate in')}</div>
14 <ul>
15 %for pull_request in c.participate_in_pull_requests:
16 <li>
17 <a href="${h.url('pullrequest_show',repo_name=pull_request.org_repo.repo_name,pull_request_id=pull_request.pull_request_id)}">
18 ${_('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))}
19 </a>
20 </li>
21 %endfor
22 </ul>