2015-03-02 08:52:07 +00:00
|
|
|
{% extends "base.html" %}
|
2020-10-08 11:57:51 +00:00
|
|
|
|
2015-03-02 08:52:07 +00:00
|
|
|
{% load i18n %}
|
2020-06-16 12:35:08 +00:00
|
|
|
{% load icons %}
|
2020-10-08 11:57:51 +00:00
|
|
|
{% load qr_code %}
|
|
|
|
|
2020-06-16 12:35:08 +00:00
|
|
|
{% block title %}{% trans "User Profile" %} - {{ user }}{% endblock %}
|
2020-10-15 14:18:45 +00:00
|
|
|
{% block page_heading %}{% trans "User Profile" %}: {{ user }}{% endblock page_heading %}
|
2015-03-02 08:52:07 +00:00
|
|
|
|
2020-10-15 14:18:45 +00:00
|
|
|
{% block page_heading_extra %}
|
2020-10-19 08:26:08 +00:00
|
|
|
{% if otp_enabled %}
|
|
|
|
<a href="{% url 'accounts:admin_email_otp' user.id %}" class="btn btn-secondary" title="{% trans "Email OTP QR code" %}">
|
|
|
|
{% icon 'qrcode' %}
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
<a href="{% url 'admin:user_update' user.id %}?next={% url 'accounts:account' user.id %}" class="btn btn-primary" title="{% trans "Edit user" %}">
|
|
|
|
{% icon 'pencil' %}
|
|
|
|
</a>
|
|
|
|
<a href="{% url 'accounts:user_instance_create' user.id %}" class="btn btn-success" title="{% trans "Create user instance" %}">
|
2020-10-14 08:37:46 +00:00
|
|
|
{% icon 'plus' %}
|
|
|
|
</a>
|
2020-10-15 14:18:45 +00:00
|
|
|
{% endblock page_heading_extra %}
|
2019-07-31 08:03:48 +00:00
|
|
|
|
2020-10-14 08:37:46 +00:00
|
|
|
{% block content %}
|
2020-06-16 12:35:08 +00:00
|
|
|
<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="#instances" type="button" role="tab" aria-controls="instances" aria-selected="true">
|
|
|
|
{% trans "Instances" %}
|
|
|
|
</button>
|
2020-06-16 12:35:08 +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="#public-keys" type="button" role="tab" aria-controls="public-keys" aria-selected="false">
|
|
|
|
{% trans "Public Keys" %}
|
|
|
|
</button>
|
2020-06-16 12:35:08 +00:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<div class="tab-content">
|
|
|
|
<div class="tab-pane active" id="instances">
|
|
|
|
<table class="table table-striped table-hover">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th scope="col">#</th>
|
|
|
|
<th scope="col">{% trans "Instance" %}</th>
|
|
|
|
<th scope="col">{% trans "VNC" %}</th>
|
|
|
|
<th scope="col">{% trans "Resize" %}</th>
|
|
|
|
<th scope="col">{% trans "Delete" %}</th>
|
|
|
|
<th scope="colgroup" colspan="2">{% trans "Action" %}</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for inst in user_insts %}
|
2019-07-31 08:03:48 +00:00
|
|
|
<tr>
|
2020-06-16 12:35:08 +00:00
|
|
|
<td>{{ forloop.counter }}</td>
|
2020-07-13 09:33:09 +00:00
|
|
|
<td><a href="{% url 'instances:instance' inst.instance.id %}">{{ inst.instance.name }}</a></td>
|
2020-06-16 12:35:08 +00:00
|
|
|
<td>{{ inst.is_vnc }}</td>
|
|
|
|
<td>{{ inst.is_change }}</td>
|
|
|
|
<td>{{ inst.is_delete }}</td>
|
|
|
|
<td style="width:5px;">
|
2020-10-14 08:37:46 +00:00
|
|
|
<a href="{% url 'accounts:user_instance_update' inst.id %}" class="btn btn-sm btn-secondary" title="{% trans "edit" %}">
|
2020-06-16 12:35:08 +00:00
|
|
|
{% icon 'pencil' %}
|
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
<td style="width:5px;">
|
2020-10-14 08:37:46 +00:00
|
|
|
<a class="btn btn-sm btn-secondary" href="{% url 'accounts:user_instance_delete' inst.id %}" title="{% trans "Delete" %}">
|
2020-06-16 12:35:08 +00:00
|
|
|
{% icon 'trash' %}
|
|
|
|
</a>
|
|
|
|
</td>
|
2019-07-31 08:03:48 +00:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
2020-06-16 12:35:08 +00:00
|
|
|
</tbody>
|
|
|
|
</table>
|
2019-07-31 08:03:48 +00:00
|
|
|
</div>
|
2020-06-16 12:35:08 +00:00
|
|
|
<div class="tab-pane fade" id="public-keys">
|
|
|
|
<table class="table table-striped table-hover">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th scope="col">{% trans "Key name" %}</th>
|
|
|
|
<th scope="col">{% trans "Public key" %}</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for publickey in publickeys %}
|
|
|
|
<tr>
|
|
|
|
<td>{{ publickey.keyname }}</td>
|
|
|
|
<td title="{{ publickey.keypublic }}">{{ publickey.keypublic|truncatechars:64 }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2019-07-31 08:03:48 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-06-16 12:35:08 +00:00
|
|
|
{% endblock content %}
|