Files
@ 8ee8f4dc16df
Branch filter:
Location: kallithea/rhodecode/templates/admin/users/user_edit_my_account_pullrequests.html - annotation
8ee8f4dc16df
1.1 KiB
text/html
changed the tests for search.
for >1 page we cannot guarantee the order, thus we cannot
check for particular revision.
for >1 page we cannot guarantee the order, thus we cannot
check for particular revision.
19daa8d761dc 19daa8d761dc 19daa8d761dc ef7520340c44 ef7520340c44 ef7520340c44 ef7520340c44 ef7520340c44 ef7520340c44 ef7520340c44 ef7520340c44 ef7520340c44 ef7520340c44 ef7520340c44 19daa8d761dc 19daa8d761dc 19daa8d761dc 19daa8d761dc ef7520340c44 ef7520340c44 ef7520340c44 ef7520340c44 ef7520340c44 ef7520340c44 ef7520340c44 ef7520340c44 ef7520340c44 ef7520340c44 ef7520340c44 19daa8d761dc |
<div class="pullrequests_section_head">${_('Opened by me')}</div>
<ul>
%if c.my_pull_requests:
%for pull_request in c.my_pull_requests:
<li>
<a href="${h.url('pullrequest_show',repo_name=pull_request.other_repo.repo_name,pull_request_id=pull_request.pull_request_id)}">
${_('Pull request #%s opened on %s') % (pull_request.pull_request_id, h.fmt_date(pull_request.created_on))}
</a>
</li>
%endfor
%else:
<li><span class="empty_data">${_('Nothing here yet')}</span></li>
%endif
</ul>
<div class="pullrequests_section_head">${_('I participate in')}</div>
<ul>
%if c.my_pull_requests:
%for pull_request in c.participate_in_pull_requests:
<li>
<a href="${h.url('pullrequest_show',repo_name=pull_request.other_repo.repo_name,pull_request_id=pull_request.pull_request_id)}">
${_('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))}
</a>
</li>
%endfor
%else:
<li><span class="empty_data">${_('Nothing here yet')}</span></li>
%endif
</ul>
|