podcast-generator/templates/admin_feed_edit.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

18 lines
435 B
Django/Jinja

{% extends 'layout.html.j2' %}
{% block content %}
<h1>{{ feed.name }}</h1>
<form method="post">
<fieldset>
<label>
Name
<input name="name" value="{{ feed.name }}" />
</label>
<label>
Description
<textarea name="description">{{ feed.description }}</textarea>
</label>
</fieldset>
<input type="submit" value="Update" />
</form>
{% endblock %}