2015-03-18 15:13:44 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% load i18n %}
|
2021-07-07 11:12:38 +00:00
|
|
|
{% load django_bootstrap5 %}
|
2020-06-16 08:36:53 +00:00
|
|
|
{% load icons %}
|
2015-05-27 11:10:57 +00:00
|
|
|
{% load tags_fingerprint %}
|
2015-03-18 15:13:44 +00:00
|
|
|
|
2020-10-14 08:37:46 +00:00
|
|
|
{% block title %}{% trans "Profile" %}: {{ request.user.first_name }} {{ request.user.last_name}}{% endblock %}
|
2015-03-18 15:13:44 +00:00
|
|
|
|
2020-10-15 14:18:45 +00:00
|
|
|
{% block page_heading %}{% trans "Profile" %}: {{ request.user.first_name }} {{ request.user.last_name}}{% endblock page_heading %}
|
2020-10-14 08:37:46 +00:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<ul class="nav nav-tabs">
|
2021-07-07 11:12:38 +00:00
|
|
|
<li class="nav-item" role="presentation">
|
|
|
|
<button class="nav-link active" data-bs-toggle="tab" data-bs-target="#editprofile" type="button" role="tab" aria-controls="editprofile" aria-selected="true">
|
|
|
|
{% trans "Edit Profile" %}
|
|
|
|
</button>
|
2020-10-14 08:37:46 +00:00
|
|
|
</li>
|
2021-07-07 11:12:38 +00:00
|
|
|
<li class="nav-item" role="presentation">
|
|
|
|
<button class="nav-link" data-bs-toggle="tab" data-bs-target="#sshkeys" type="button" role="tab" aria-controls="sshkeys" aria-selected="false">
|
|
|
|
{% trans "SSH Keys" %}
|
|
|
|
</button>
|
2020-10-14 08:37:46 +00:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
<div class="tab-content">
|
2021-07-07 11:12:38 +00:00
|
|
|
<div class="tab-pane tab-pane-bordered active" id="editprofile">
|
2020-10-14 08:37:46 +00:00
|
|
|
<div class="card">
|
|
|
|
<div class="card-body">
|
|
|
|
<form method="post" action="" role="form" aria-label="Edit user info form">
|
|
|
|
{% csrf_token %}
|
|
|
|
{% bootstrap_form profile_form layout='horizontal' %}
|
2020-06-16 08:36:53 +00:00
|
|
|
{% if perms.accounts.change_password %}
|
2020-10-14 08:37:46 +00:00
|
|
|
<a href="{% url 'accounts:change_password' %}" class="btn btn-primary">
|
|
|
|
{% icon 'lock' %} {% trans "Change Password" %}
|
|
|
|
</a>
|
2020-06-16 08:36:53 +00:00
|
|
|
{% endif %}
|
2021-07-07 11:12:38 +00:00
|
|
|
<div class="mb-0 float-end">
|
2020-10-14 08:37:46 +00:00
|
|
|
<button type="submit" class="btn btn-primary">
|
|
|
|
{% icon 'pencil' %} {% trans "Update" %}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-07-07 11:12:38 +00:00
|
|
|
<div class="tab-pane tab-pane-bordered fade" id="sshkeys">
|
2020-10-14 08:37:46 +00:00
|
|
|
{% if publickeys %}
|
|
|
|
<div class="col-lg-12">
|
|
|
|
<div class="table-responsive">
|
|
|
|
<table class="table table-hover">
|
|
|
|
<tbody class="text-center">
|
|
|
|
{% for key in publickeys %}
|
|
|
|
<tr>
|
|
|
|
<td>{{ key.keyname }} ({% ssh_to_fingerprint key.keypublic %})</td>
|
|
|
|
<td>
|
|
|
|
<a href="{% url 'accounts:ssh_key_delete' key.id %}" title="{% trans "Delete" %}" class="btn btn-sm btn-secondary">
|
|
|
|
{% icon 'trash' %}
|
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-header">
|
|
|
|
{%trans "Add SSH Key" %}
|
|
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
|
|
<form method="post" action="{% url 'accounts:ssh_key_create' %}" role="form" aria-label="Add key to user form">
|
|
|
|
{% csrf_token %}
|
|
|
|
{% bootstrap_form ssh_key_form layout='horizontal' %}
|
2021-07-07 11:12:38 +00:00
|
|
|
<div class="mb-0 float-end">
|
2020-10-14 08:37:46 +00:00
|
|
|
<button type="submit" class="btn btn-primary">
|
|
|
|
{% icon 'plus' %} {% trans "Add" %}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
2015-03-18 15:13:44 +00:00
|
|
|
</div>
|
2020-10-14 08:37:46 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|