%if pull_request.last_review_status:
})
%else:
})
%endif
${pull_request.title or _("(no title)")}
${_('opened on %s from') % (h.fmt_date(pull_request.created_on))}
<% org_ref_name=pull_request.org_ref.rsplit(':', 2)[-2] %>
${pull_request.org_repo.repo_name}#${org_ref_name}
%if pull_request.is_closed():
(${_('Closed')})
%endif
${h.form(url('pullrequest_delete', repo_name=pull_request.other_repo.repo_name, pull_request_id=pull_request.pull_request_id),method='delete', style="display:inline-block")}
${h.submit('remove_%s' % pull_request.pull_request_id, '', title=_('Delete Pull Request'),class_="delete_icon action_button",onclick="return confirm('"+_('Confirm to delete this pull request')+"');")}
${h.end_form()}