podcast-generator/templates/admin_feeds.html.j2
Jake Walker dd268a8028
All checks were successful
ci/woodpecker/push/build Pipeline was successful
web app rewrite
2025-01-10 13:30:09 +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 %}