recipes/backend/templates/edit_recipe.html
2022-12-15 01:13:57 +01:00

15 lines
No EOL
292 B
HTML

{% extends "base_with_list.html" %}
{% block content %}
<label for="title_field">Title</label>
<input
id="title_field"
type="text"
name="title"
value="{{ current_recipe.title }}"
autocapitalize="none"
autocomplete="title"
autofocus="autofocus" />
{% endblock %}