Skip to content

Commit

Permalink
Reword capture engine info in playback tray.
Browse files Browse the repository at this point in the history
  • Loading branch information
rebeccacremona committed Oct 24, 2023
1 parent b8f6472 commit 373bca3
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions perma_web/perma/templates/archive/single-link.html
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,14 @@
</div>
{% if request.user.is_staff %}
<div class="tray-detail-group admin-only">
<dt class="tray-detail-title">Captured by</dt>
<dd class="tray-detail-entry">{{link.captured_by_software}}</dd>
<dt class="tray-detail-title">Source</dt>
{% if link.captured_by_software == 'upload' %}
<dd class="tray-detail-entry">User Upload</dd>
{% elif link.captured_by_software == 'perma' %}
<dd class="tray-detail-entry">Captured by Perma (internal)</dd>
{% else %}
<dd class="tray-detail-entry">Captured by Scoop</dd>
{% endif %}
</div>
{% endif %}
{% if can_delete and not link.capture_job.status == 'in_progress' %}
Expand Down

0 comments on commit 373bca3

Please sign in to comment.