diff --git a/scipost_django/submissions/refereeing_cycles.py b/scipost_django/submissions/refereeing_cycles.py index 8405aae8526d4d9d0426f38ad2626ef0f324f7cf..d78f78818e5c03e574cbbdad7f1490731e65bbbe 100644 --- a/scipost_django/submissions/refereeing_cycles.py +++ b/scipost_django/submissions/refereeing_cycles.py @@ -8,6 +8,8 @@ from django.urls import reverse from django.utils import timezone from django.utils.html import format_html, format_html_join, html_safe +from common.utils import get_current_domain + from . import constants @@ -89,6 +91,12 @@ class BaseAction: print deadline = obj.submission.reporting_deadline - timezone.now() + # Add the domain name to the url so that it is clickable in the email + if self.url.startswith("/"): + base_url = "https://" + get_current_domain() + self.url + else: + base_url = self.url + return text.format( count=len(self._objects), object=obj.__class__.__name__, @@ -99,7 +107,7 @@ class BaseAction: days=timedelta.days, deadline=deadline.days, deadline_min=-deadline.days, - url=self.url, + url=base_url, url2=self.url2, )