##// END OF EJS Templates
pytest: restructure fixtures/plugins to fix problems with pkg_resources and Can't perform this operation for unregistered loader type errors....
pytest: restructure fixtures/plugins to fix problems with pkg_resources and Can't perform this operation for unregistered loader type errors. - seems the latest pytest breaks older packages relying on pkg_resources when defining a entrypoints plugins - change the way we register plugins to be local only, this is what we need anyway

File last commit:

r4046:a792f9c3 default
r4986:8782a2c5 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