1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-11-01 12:04:15 +00:00
webvirtcloud/accounts/templates/profile.html

156 lines
8.6 KiB
HTML
Raw Normal View History

2015-03-18 15:13:44 +00:00
{% extends "base.html" %}
{% load i18n %}
2015-05-27 11:10:57 +00:00
{% load tags_fingerprint %}
2015-03-24 12:45:38 +00:00
{% block title %}{% trans "Profile" %}{% endblock %}
2015-03-18 15:13:44 +00:00
{% block content %}
<!-- Page Heading -->
<div class="row">
<div class="col-lg-12">
2020-05-19 16:53:54 +00:00
<h2 class="page-header">{% trans "Profile" %}</h2>
2015-03-18 15:13:44 +00:00
</div>
</div>
<!-- /.row -->
{% include 'errors_block.html' %}
<div class="row">
<div class="col-lg-12">
2015-03-24 12:45:38 +00:00
<h3 class="page-header">{% trans "Edit Profile" %}</h3>
<form method="post" action="" role="form">{% csrf_token %}
2015-03-24 12:45:38 +00:00
<div class="form-group">
2020-05-19 16:53:54 +00:00
<label class="col-sm-2 col-form-label">{% trans "Login" %}</label>
2015-03-24 12:45:38 +00:00
<div class="col-sm-4">
<input type="text" class="form-control" value="{{ request.user.username }}" disabled>
</div>
</div>
<div class="form-group bridge_name_form_group_dhcp">
2020-05-19 16:53:54 +00:00
<label class="col-sm-2 col-form-label">{% trans "Username" %}</label>
2015-03-24 12:45:38 +00:00
<div class="col-sm-4">
<input type="text" class="form-control" name="username" value="{{ request.user.first_name }}" pattern="[0-9a-zA-Z]+">
</div>
</div>
<div class="form-group bridge_name_form_group_dhcp">
2020-05-19 16:53:54 +00:00
<label class="col-sm-2 col-form-label">{% trans "Email" %}</label>
2015-03-24 12:45:38 +00:00
<div class="col-sm-4">
<input type="email" class="form-control" name="email" value="{{ request.user.email }}">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-primary">{% trans "Change" %}</button>
</div>
</div>
</form>
{% if perms.accounts.change_password %}
2015-03-24 12:45:38 +00:00
<h3 class="page-header">{% trans "Edit Password" %}</h3>
<form method="post" action="" role="form">{% csrf_token %}
2015-03-24 12:45:38 +00:00
<div class="form-group">
2020-05-19 16:53:54 +00:00
<label class="col-sm-2 col-form-label">{% trans "Old" %}</label>
2015-03-24 12:45:38 +00:00
<div class="col-sm-4">
<input type="password" class="form-control" name="oldpasswd" value="">
</div>
</div>
<div class="form-group bridge_name_form_group_dhcp">
2020-05-19 16:53:54 +00:00
<label class="col-sm-2 col-form-label">{% trans "New" %}</label>
2015-03-24 12:45:38 +00:00
<div class="col-sm-4">
<input type="password" class="form-control" name="passwd1" value="">
</div>
</div>
<div class="form-group bridge_name_form_group_dhcp">
2020-05-19 16:53:54 +00:00
<label class="col-sm-2 col-form-label">{% trans "Retry" %}</label>
2015-03-24 12:45:38 +00:00
<div class="col-sm-4">
<input type="password" class="form-control" name="passwd2" value="">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-primary">{% trans "Change" %}</button>
</div>
</div>
</form>
{% endif %}
2015-05-27 11:10:57 +00:00
<h3 class="page-header">{% trans "SSH Keys" %}</h3>
{% if publickeys %}
<div class="col-lg-12">
<div class="table-responsive">
<table class="table table-hover">
2020-05-19 16:53:54 +00:00
<tbody class="text-center">
2015-05-27 11:10:57 +00:00
{% for key in publickeys %}
<tr>
<td>{{ key.keyname }} ({% ssh_to_fingerprint key.keypublic %})</td>
<td>
<form action="" method="post" role="form">{% csrf_token %}
<input type="hidden" name="keyid" value="{{ key.id }}"/>
2020-05-19 16:53:54 +00:00
<button type="submit" class="btn btn-sm btn-secondary" name="keydelete" title="{% trans "Delete" %}" onclick="return confirm('{% trans "Are you sure?" %}')">
<span class="fa fa-trash"></span>
2015-05-27 11:10:57 +00:00
</button>
</form>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
{% endif %}
<form method="post" action="" role="form">{% csrf_token %}
2015-05-27 11:10:57 +00:00
<div class="form-group bridge_name_form_group_dhcp">
2020-05-19 16:53:54 +00:00
<label class="col-sm-2 col-form-label">{% trans "Key name" %}</label>
2015-05-27 11:10:57 +00:00
<div class="col-sm-4">
<input type="text" class="form-control" name="keyname" placeholder="{% trans "Enter Name" %}">
</div>
</div>
<div class="form-group bridge_name_form_group_dhcp">
2020-05-19 16:53:54 +00:00
<label class="col-sm-2 col-form-label">{% trans "Public key" %}</label>
2015-05-27 11:10:57 +00:00
<div class="col-sm-8">
<textarea name="keypublic" class="form-control" rows="6" placeholder="{% trans "Enter Public Key" %}"></textarea>
</div>
</div>
<div class="form-group">
2020-05-19 16:53:54 +00:00
<div class="col-sm-10">
<button type="submit" class="btn btn-primary">{% trans "Add" %}</button>
2015-05-27 11:10:57 +00:00
</div>
</div>
</form>
2020-05-19 16:53:54 +00:00
{% if request.user.is_superuser %}
<h3 class="page-header">{% trans "Themes" %}</h3>
<form method="post" action="" role="form">{% csrf_token %}
2020-05-19 16:53:54 +00:00
<div class="form-group">
<label class="col-sm-2 col-form-label">{% trans "Themes" %}</label>
<div class="col-sm-4">
<select class="custom-select" name="theme_select" id="theme_select">
{% for theme in themes_list %}
<option value="{{ theme }}">{{ theme }}</option>
{% endfor %}
</select>
<label>{% trans "Current Theme" %}:</label>
<label id="active_theme"></label>
</div>
<p class="text-muted">{% trans "After change please full refresh page with Ctrl + F5 "%}</p>
</div>
<div class="form-group">
<div class="col-sm-10">
<button type="submit" class="btn btn-primary" name="change_theme" onclick="reloadStylesheets()">{% trans "Change" %}</button>
</div>
</div>
</form>
{% endif %}
2015-03-18 15:13:44 +00:00
</div>
</div>
{% endblock %}
2020-05-19 16:53:54 +00:00
{% block script %}
<script>
$(document).ready(function (){
$('#active_theme').text(localStorage.getItem('active_theme'));
});
function reloadStylesheets() {
var selected_theme = $('#theme_select option').filter(':selected').val();
var queryString = '?reload=' + selected_theme;
$('#wvc_css').each(function () {
this.href = this.href.replace(/\?.*|$/, queryString);
});
localStorage.setItem('active_theme', selected_theme);
}
</script>
{% endblock %}