# HG changeset patch # User Thomas De Schampheleire # Date 2019-02-23 21:10:59 # Node ID 9e026d2426c9f68c58b5fcdb7ebe348e774e5251 # Parent 3922aa544fbbca1b0f88443b6f58f3174a99ce7b pull requests: urlify pull request lists to make issue references clickable Issue references and commit hashes are already clickable in: - pull request descriptions, - commit messages - changelog but not yet in: - pull request titles - pull request listings The previous commit handled the former case, this commit handles the latter. diff --git a/kallithea/templates/pullrequests/pullrequest_data.html b/kallithea/templates/pullrequests/pullrequest_data.html --- a/kallithea/templates/pullrequests/pullrequest_data.html +++ b/kallithea/templates/pullrequests/pullrequest_data.html @@ -32,7 +32,7 @@ - ${pr.title or _("(no title)")} + ${h.urlify_text(pr.title or _("(no title)"), pr.org_repo.repo_name, pr.url())} %if pr.is_closed(): ${_('Closed')} %endif