Skip to content
Snippets Groups Projects
Commit 752e89f5 authored by Tanner Prestegard's avatar Tanner Prestegard Committed by GraceDB
Browse files

superevents: fix retraction comments for public alerts page

Display the "RETRACTED" part first.
parent ab81c11c
No related branches found
No related tags found
No related merge requests found
...@@ -213,8 +213,8 @@ class SupereventPublic(DisplayFarMixin, ListView): ...@@ -213,8 +213,8 @@ class SupereventPublic(DisplayFarMixin, ListView):
'comment', flat=True))) 'comment', flat=True)))
if se.retract: if se.retract:
if se.comments: if se.comments:
se.comments += " " se.comments = " ** " + se.comments
se.comments += "RETRACTED" se.comments = "RETRACTED" + se.comments
# Get list of PE results # Get list of PE results
pe_results = get_objects_for_user(self.request.user, pe_results = get_objects_for_user(self.request.user,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment