13 lines
No EOL
276 B
HTML
13 lines
No EOL
276 B
HTML
{% extends "base_with_list.html" %}
|
|
|
|
{% block content %}
|
|
<label for="title_field">Name</label>
|
|
<input
|
|
id="name_field"
|
|
type="text"
|
|
name="name"
|
|
value="{{ user.name }}"
|
|
autocapitalize="none"
|
|
autocomplete="title"
|
|
autofocus="autofocus" />
|
|
{% endblock %} |