logs-collector/logs_collector/account/templates/account/profile_update.html

14 lines
341 B
HTML

{% extends 'account/profile.html' %}
{% load static %}
{% load crispy_forms_tags %}
{% block profile_update %}
{% include 'account/includes/auth_credentials.html' %}
<div class="container">
<h5 class="card-title">Profile</h5>
<hr />
<div class="row">
{% crispy form %}
</div>
</div>
{% endblock profile_update %}