##// END OF EJS Templates
#538 form for permissions can handle multiple users at once
#538 form for permissions can handle multiple users at once

File last commit:

r2746:49a4864b beta
r2759:c61c2cce beta
Show More
user_edit_my_account_pullrequests.html
37 lines | 1.6 KiB | text/html | HtmlLexer
/ rhodecode / templates / admin / users / user_edit_my_account_pullrequests.html
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>
Authors of pull-requests can now delete them
r2746 <div style="float:left">
fixed missing div on my_account + added nothing here yet when there are no...
r2722 <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>
Authors of pull-requests can now delete them
r2746 </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>
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>
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.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
Improvements to my account page...
r2624 </ul>