Skip to content

Commit dbe5903

Browse files
committed
Provide a full URL to the last call email, rather than just the local url path.
- Legacy-Id: 2913
1 parent 5daa6a8 commit dbe5903

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

ietf/idrfc/views_ballot.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -633,8 +633,10 @@ def make_last_call(request, name):
633633
filename_fragment = doc.filename[:-4]
634634
iprs = IprDetail.objects.filter(title__icontains=filename_fragment)
635635
if iprs:
636-
links = [urlreverse("ietf.ipr.views.show", kwargs=dict(ipr_id=i.ipr_id))
636+
links = [ urlreverse("ietf.ipr.views.show", kwargs=dict(ipr_id=i.ipr_id))
637637
for i in iprs]
638+
639+
links = [ settings.IDTRACKER_BASE_URL+url if not url.startswith("http") else url for url in links ]
638640

639641
announcement += "\n\n"
640642
announcement += "The following IPR Declarations may be related to this I-D:"

0 commit comments

Comments
 (0)