podcast-generator/templates/admin_feeds.html.j2
Jake Walker 6bf17e13da
Some checks failed
ci/woodpecker/push/build Pipeline failed
web app rewrite
2025-01-10 13:29:26 +00:00

9 lines
225 B
Django/Jinja

{% extends 'layout.html.j2' %}
{% block content %}
<h1>Podcasts</h1>
<ul>
{% for id, podcast in repo.podcasts.items() %}
<li><a href="/admin/{{ id }}">{{ podcast.name }}</a></li>
{% endfor %}
</ul>
{% endblock %}