##// 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 <div class="pullrequests_section_head">${_('Opened by me')}</div>
2 <div class="pullrequests_section_head">${_('Opened by me')}</div>
3 <ul>
3 <ul>
4 %for pull_request in c.my_pull_requests:
4 %for pull_request in c.my_pull_requests:
5 <li>
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 ${_('Pull request #%s opened on %s') % (pull_request.pull_request_id, h.fmt_date(pull_request.created_on))}
7 ${_('Pull request #%s opened on %s') % (pull_request.pull_request_id, h.fmt_date(pull_request.created_on))}
8 </a>
8 </a>
9 </li>
9 </li>
10 %endfor
10 %endfor
11 </ul>
11 </ul>
12
12
13 <div class="pullrequests_section_head">${_('I participate in')}</div>
13 <div class="pullrequests_section_head">${_('I participate in')}</div>
14 <ul>
14 <ul>
15 %for pull_request in c.participate_in_pull_requests:
15 %for pull_request in c.participate_in_pull_requests:
16 <li>
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 ${_('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))}
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>
19 </a>
20 </li>
20 </li>
21 %endfor
21 %endfor
22 </ul>
22 </ul>
General Comments 0
You need to be logged in to leave comments. Login now