Skip to content
Snippets Groups Projects
Commit ab5e2b14 authored by Philipp Markwardt's avatar Philipp Markwardt :tram:
Browse files

feat: show pub status on episode list

* add: show the assigned report types and
  the corresponding publication status in
  the episode list for every episode

Ref: #335
parent fb20afd5
Branches
Tags
No related merge requests found
{% load i18n %}
{% load audiothek %}
{% if episode %}
<div class="row py-1 text-secondary">
......@@ -27,5 +28,17 @@
</span>
</small>
</div>
<div class="col-12 pt-2">
{% for report in episode.reports.all %}
<div class="float-right">
<small class="badge badge-light badge-pill ml-2 p-1 text-secondary border">
{% include 'audiothek/_radioreport_pubstatus.html' with report=report %}
{{ report.type|radioreport_type_label}}
</small>
</div>
{% endfor %}
</div>
</div>
{% endif %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment