15 lines
No EOL
292 B
HTML
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 %} |