mirror of
https://github.com/Labelbase/Labelbase.git
synced 2026-08-15 12:50:45 +02:00
23 lines
563 B
HTML
23 lines
563 B
HTML
{% extends "_base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block nav_userprofile %}active{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="row">
|
|
<div class="col float-start">
|
|
<h2 style="padding-top: 1em;">{% block title %}Profile{% endblock %}</h2>
|
|
</div>
|
|
<div class="col float-end" >
|
|
<div class="btn-group float-end" role="group" aria-label="Button group with nested dropdown" style="padding-top: 2em;">
|
|
<a href="{% url 'change_password' %}" class="btn btn-primary">Change Password</a>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|