##// END OF EJS Templates
feat(configs): deprecared old hooks protocol and ssh wrapper....
feat(configs): deprecared old hooks protocol and ssh wrapper. New defaults are now set on v2 keys, so previous installation are automatically set to new keys. Fallback mode is still available.

File last commit:

r4046:a792f9c3 default
r5496:cab50adf default
Show More
hovercard_pull_request.mako
25 lines | 892 B | application/x-mako | MakoHtmlLexer
<%namespace name="base" file="/base/base.mako"/>
<%namespace name="dt" file="/data_table/_dt_elements.mako"/>
% if c.can_view_pr:
<div class="pr-hovercard-header">
<div class="pull-left tagtag">
${c.pull_request.status}
</div>
<div class="pr-hovercard-user">
${_('Created')}: ${h.format_date(c.pull_request.created_on)}
</div>
</div>
<div class="pr-hovercard-title">
<h3><a href="${h.route_path('pull_requests_global', pull_request_id=c.pull_request.pull_request_id)}">!${c.pull_request.pull_request_id}</a> - ${c.pull_request.title}</h3>
</div>
<div class="pr-hovercard-footer">
${_('repo')}: ${c.pull_request.target_repo.repo_name}
</div>
% else:
## user cannot view this PR we just show the generic info, without any exposed data
<div class="pr-hovercard-title">
<h3>${_('Pull Request')} !${c.pull_request.pull_request_id}</h3>
</div>
% endif