##// END OF EJS Templates
fixed wrong repo reference in my pull-requests page
marcink -
r2667:129beb00 beta
parent child Browse files
Show More
@@ -1,22 +1,22 b''
1 1
2 2 <div class="pullrequests_section_head">${_('Opened by me')}</div>
3 3 <ul>
4 4 %for pull_request in c.my_pull_requests:
5 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)}">
6 <a href="${h.url('pullrequest_show',repo_name=pull_request.other_repo.repo_name,pull_request_id=pull_request.pull_request_id)}">
7 7 ${_('Pull request #%s opened on %s') % (pull_request.pull_request_id, h.fmt_date(pull_request.created_on))}
8 8 </a>
9 9 </li>
10 10 %endfor
11 11 </ul>
12 12
13 13 <div class="pullrequests_section_head">${_('I participate in')}</div>
14 14 <ul>
15 15 %for pull_request in c.participate_in_pull_requests:
16 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)}">
17 <a href="${h.url('pullrequest_show',repo_name=pull_request.other_repo.repo_name,pull_request_id=pull_request.pull_request_id)}">
18 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 19 </a>
20 20 </li>
21 21 %endfor
22 22 </ul>
General Comments 0
You need to be logged in to leave comments. Login now