changeset 5716:bbd307ce70c0

pullrequest: add URL changesets in txt notification email to reviewers Similar to adding the URL for each changeset in the html notification email (commit xxxxxxxxxxxx) do the same for txt emails. The e-mail client presumably makes these URLs clickable.
author Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
date Mon, 08 Feb 2016 17:42:59 +0100
parents 1fd82c81118d
children 494989b0ce72
files kallithea/templates/email_templates/pull_request.txt
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/templates/email_templates/pull_request.txt	Mon Feb 15 19:29:26 2016 +0100
+++ b/kallithea/templates/email_templates/pull_request.txt	Mon Feb 08 17:42:59 2016 +0100
@@ -14,7 +14,7 @@
 
 ${_('Changesets')|n,unicode}:
 %for r,r_msg in pr_revisions:
-${h.short_id(r)|n,unicode}:
+${h.short_id(r)|n,unicode}: ${h.canonical_url('changeset_home', repo_name=org_repo_name, revision=r)}
 ${h.shorter(r_msg, 256)|n,unicode}
 
 %endfor