Files
@ cce2d984b001
Branch filter:
Location: kallithea/rhodecode/templates/admin/users/user_edit_my_account_pullrequests.html - annotation
cce2d984b001
2.4 KiB
text/html
User create/delete hooks for rcextensions.
When a user is created or deleted, the CREATE_USER_HOOK or DELETE_USER_HOOK
are called as part of the log_create_user and log_delete_user functions
respectively. This is similar to the existing log_create_repository and
log_delete_repository functions that already exist as part of the rcextensions
module.
When a user is created or deleted, the CREATE_USER_HOOK or DELETE_USER_HOOK
are called as part of the log_create_user and log_delete_user functions
respectively. This is similar to the existing log_create_repository and
log_delete_repository functions that already exist as part of the rcextensions
module.
7854097b189c 7854097b189c 7854097b189c 7854097b189c 7854097b189c 19daa8d761dc 19daa8d761dc ef7520340c44 ef7520340c44 8a8a559eaf95 74364824c1e1 74364824c1e1 8a8a559eaf95 8a8a559eaf95 8a8a559eaf95 8a8a559eaf95 8a8a559eaf95 8a8a559eaf95 8a8a559eaf95 74364824c1e1 74364824c1e1 74364824c1e1 74364824c1e1 74364824c1e1 74364824c1e1 74364824c1e1 ef7520340c44 ef7520340c44 ef7520340c44 ef7520340c44 ef7520340c44 19daa8d761dc 19daa8d761dc 49a4864b11c1 19daa8d761dc eaa36a2497a9 ef7520340c44 8a8a559eaf95 74364824c1e1 8a8a559eaf95 8a8a559eaf95 8a8a559eaf95 8a8a559eaf95 8a8a559eaf95 8a8a559eaf95 8a8a559eaf95 8a8a559eaf95 ef7520340c44 ef7520340c44 ef7520340c44 ef7520340c44 ef7520340c44 19daa8d761dc | %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
<div class="pullrequests_section_head">${_('Opened by me')}</div>
<ul>
%if c.my_pull_requests:
%for pull_request in c.my_pull_requests:
<li class="${'closed' if pull_request.is_closed() else ''}">
<div style="height: 12px">
<div style="float:left">
<img src="${h.url('/images/icons/flag_status_%s.png' % str(pull_request.last_review_status))}" />
<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))}
%if pull_request.is_closed():
(${_('Closed')})
%endif
</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>
</li>
%endfor
%else:
<li><span class="empty_data">${_('Nothing here yet')}</span></li>
%endif
</ul>
<div class="pullrequests_section_head" style="clear:both">${_('I participate in')}</div>
<ul>
%if c.participate_in_pull_requests:
%for pull_request in c.participate_in_pull_requests:
<li class="${'closed' if pull_request.is_closed() else ''}">
<div style="height: 12px">
<img src="${h.url('/images/icons/flag_status_%s.png' % str(pull_request.last_review_status))}" />
<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>
%if pull_request.is_closed():
(${_('Closed')})
%endif
</div>
</li>
%endfor
%else:
<li><span class="empty_data">${_('Nothing here yet')}</span></li>
%endif
</ul>
|