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

18 lines
483 B
Django/Jinja

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