From d34e70ee9a4f94aa385323a52b48d527db2f9a26 Mon Sep 17 00:00:00 2001 From: Jonah Kanner <jonah.kanner@ligo.org> Date: Thu, 23 May 2019 15:25:24 -0500 Subject: [PATCH] Only see omega scans if logged in --- gracedb/superevents/views.py | 4 ++++ gracedb/templates/superevents/public.html | 15 ++++++++++----- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/gracedb/superevents/views.py b/gracedb/superevents/views.py index e245c80ee..2467dd92f 100644 --- a/gracedb/superevents/views.py +++ b/gracedb/superevents/views.py @@ -176,6 +176,10 @@ class SupereventPublic(ListView): context['candidates']=candidates + + #-- Is this user outside the LVC? + context['user_is_external'] = is_external(self.request.user) + return context diff --git a/gracedb/templates/superevents/public.html b/gracedb/templates/superevents/public.html index 484a3d6ff..09b2d8d08 100644 --- a/gracedb/templates/superevents/public.html +++ b/gracedb/templates/superevents/public.html @@ -49,10 +49,13 @@ <thead><tr> <th scope="col" data-tablesaw-sortable-col data-tablesaw-priority="persist">Event ID</th> <th scope="col" data-tablesaw-sortable-col data-tablesaw-priority="1">Possible Source (Probability)</th> - <th scope="col" data-tablesaw-sortable-col data-tablesaw-priority="2">Date</th> + <th scope="col" data-tablesaw-col data-tablesaw-priority="2">Date</th> <th scope="col" data-tablesaw-col data-tablesaw-priority="3">GCN</th> <th scope="col" data-tablesaw-col data-tablesaw-priority="4">Location</th> - <th scope="col" data-tablesaw-sortable-col data-tablesaw-priority="5">Ω<br/>Scan</th> + + {% if not user_is_external %} + <th scope="col" data-tablesaw-col data-tablesaw-priority="5">Ω Scan</th> + {% endif %} <th scope="col" data-tablesaw-sortable-col data-tablesaw-priority="5">End Time GPS</th> <th scope="col" data-tablesaw-sortable-col data-tablesaw-priority="5">Comments</th> @@ -61,8 +64,6 @@ {% for event in object_list %} - - <tr {% if event.retract %}style='background-color:#EDD' {% endif %} > <td><a href=/superevents/{{ event.superevent_id }}>{{ event.superevent_id }}</a></td> <td style='min-width:120px'>{{ event.sourcetypes }} </td> @@ -72,10 +73,14 @@ <a href={{ event.gcnurl }}>Circulars</a> </td> <td> <a href='{{ event.maplocal }}'> <img src='{{ event.maplocal }}' width='200px'/> </a> </td> - <td> + + {% if not user_is_external %} + <td style='min-width:70px'> <a href='https://ldas-jobs.ligo-la.caltech.edu/~detchar/dqr/events/{{ event.superevent_id }}/L1deepomegascan/'>Ω L1</a><br/> <a href='https://ldas-jobs.ligo-wa.caltech.edu/~detchar/dqr/events/{{ event.superevent_id }}/H1deepomegascan/'>Ω H1</a> </td> + {% endif %} + <td>{{ event.t_0 }} </td> <td>{{ event.comments }} </td> </tr> -- GitLab