##// END OF EJS Templates
show only open pull requests in the counter, and use repo context bar in pull requests view
show only open pull requests in the counter, and use repo context bar in pull requests view

File last commit:

r3404:7854097b beta
r3580:7b9d4f6b beta
Show More
user_edit_my_account_pullrequests.html
53 lines | 2.4 KiB | text/html | HtmlLexer
/ rhodecode / templates / admin / users / user_edit_my_account_pullrequests.html
Hide closed pull requests on my page.
r3404 %if c.show_closed:
${h.checkbox('show_closed',checked="checked", label=_('Show closed pull requests'))}
%else:
${h.checkbox('show_closed',label=_('Show closed pull requests'))}
%endif
Improvements to my account page...
r2624 <div class="pullrequests_section_head">${_('Opened by me')}</div>
<ul>
fixed missing div on my_account + added nothing here yet when there are no...
r2722 %if c.my_pull_requests:
%for pull_request in c.my_pull_requests:
<li>
Hide add/delete pull request members when you don't have permission for it
r2770 <div style="height: 12px">
<div style="float:left">
show flags, and desc sort pull request based on created_date ref #765
r3389 %if pull_request.is_closed():
<img src="${h.url('/images/icons/lock_go.png')}" title="${_('Closed')}"/>
%endif
whitespace cleanup
r3394 <img src="${h.url('/images/icons/flag_status_%s.png' % str(pull_request.last_review_status))}" />
Hide add/delete pull request members when you don't have permission for it
r2770 <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>
</div>
<div style="float:left;margin-top: -5px">
${h.form(url('pullrequest_delete', repo_name=pull_request.other_repo.repo_name, pull_request_id=pull_request.pull_request_id),method='delete')}
${h.submit('remove_%s' % pull_request.pull_request_id,'',class_="delete_icon action_button",onclick="return confirm('"+_('Confirm to delete this pull request')+"');")}
${h.end_form()}
</div>
</div>
fixed missing div on my_account + added nothing here yet when there are no...
r2722 </li>
%endfor
%else:
<li><span class="empty_data">${_('Nothing here yet')}</span></li>
%endif
Improvements to my account page...
r2624 </ul>
Authors of pull-requests can now delete them
r2746 <div class="pullrequests_section_head" style="clear:both">${_('I participate in')}</div>
Improvements to my account page...
r2624 <ul>
fixes #651 Pull request I participate - empty for some cases...
r3017 %if c.participate_in_pull_requests:
fixed missing div on my_account + added nothing here yet when there are no...
r2722 %for pull_request in c.participate_in_pull_requests:
<li>
Hide add/delete pull request members when you don't have permission for it
r2770 <div style="height: 12px">
show flags, and desc sort pull request based on created_date ref #765
r3389 %if pull_request.is_closed():
<img src="${h.url('/images/icons/lock_go.png')}" title="${_('Closed')}"/>
%endif
whitespace cleanup
r3394 <img src="${h.url('/images/icons/flag_status_%s.png' % str(pull_request.last_review_status))}" />
Hide add/delete pull request members when you don't have permission for it
r2770 <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>
</div>
fixed missing div on my_account + added nothing here yet when there are no...
r2722 </li>
%endfor
%else:
<li><span class="empty_data">${_('Nothing here yet')}</span></li>
%endif
Improvements to my account page...
r2624 </ul>