Skip to content

Commit

Permalink
Hide visibility if the user is an applicant
Browse files Browse the repository at this point in the history
  • Loading branch information
theskumar committed Aug 16, 2024
1 parent d3e522e commit 23ef830
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@
</span>
</div>
<div class="align-middle">
<span class="text-fg-muted text-xs">({{ activity.visibility|visibility_display:request.user }})</span>
{% if not request.user.is_applicant %}
<span class="text-fg-muted text-xs">({{ activity.visibility|visibility_display:request.user }})</span>
{% endif %}

{% if editable and activity.user == request.user %}
<a
Expand Down

0 comments on commit 23ef830

Please sign in to comment.