26 lines
864 B
HTML
26 lines
864 B
HTML
{% extends 'programmer/base.html' %}
|
|
{% load django_bootstrap5 %}
|
|
|
|
{% block content %}
|
|
<div class="page-header">
|
|
<h1 class="page-title">Редактирование профиля</h1>
|
|
<p class="page-subtitle">{{ user.username }}</p>
|
|
</div>
|
|
|
|
<div class="content-card" style="max-width: 600px; margin: 0 auto;">
|
|
<form method="post" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
|
|
<h3>Основная информация</h3>
|
|
{% bootstrap_form user_form %}
|
|
|
|
<h3>Дополнительная информация</h3>
|
|
{% bootstrap_form profile_form %}
|
|
|
|
<div class="form-actions mt-3">
|
|
<button type="submit" class="btn btn-primary">Сохранить</button>
|
|
<a href="{% url 'profile' %}" class="btn btn-secondary">Отмена</a>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
{% endblock %} |