mirror of
https://github.com/leaders-of-digital-9-task/backend.git
synced 2024-11-22 17:36:32 +03:00
18 lines
463 B
HTML
18 lines
463 B
HTML
{% extends "base.html" %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block title %}{{ user.username }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ user.username }}</h1>
|
|
<form class="form-horizontal" method="post" action="{% url 'users:update' %}">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
<div class="control-group">
|
|
<div class="controls">
|
|
<button type="submit" class="btn btn-primary">Update</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|