mirror of
https://github.com/fastogt/fastocloud_admin.git
synced 2025-03-09 23:38:52 +00:00
143 lines
5.2 KiB
HTML
143 lines
5.2 KiB
HTML
{% extends 'layouts/layout_home.html' %}
|
|
{% block title %}
|
|
Providers | {{ config['PUBLIC_CONFIG'].site.title }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h1 class="panel-title">
|
|
<div class="col-md-11">
|
|
<a href="{{ url_for('HomeView:index') }}">{{ config['PUBLIC_CONFIG'].site.title }}</a>
|
|
</div>
|
|
<div>Version: {{ config['PUBLIC_CONFIG'].project.version }}</div>
|
|
</h1>
|
|
</div>
|
|
<div class="panel-body">
|
|
<div class="container-fluid">
|
|
<div class="row well">
|
|
<div class="col-md-8">
|
|
<p>{% trans %}Providers{% endtrans %}</p>
|
|
</div>
|
|
<div class="col-md-2">
|
|
<a href="{{ url_for('ProviderView:dashboard') }}" role="button" class="btn btn-info">
|
|
{% trans %}Dashboard{% endtrans %}
|
|
</a>
|
|
</div>
|
|
<div class="col-md-2">
|
|
<a href="{{ url_for('ProviderView:logout') }}" class="btn btn-warning" role="button">
|
|
{% trans %}Logout{% endtrans %}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<div class="row well">
|
|
<table id='providers_table' class="table">
|
|
<thead>
|
|
<tr>
|
|
<th class="provider_number">#</th>
|
|
<th class="provider_name">{% trans %}Email{% endtrans %}</th>
|
|
<th class="provider_status">{% trans %}Create date{% endtrans %}</th>
|
|
<th class="provider_status">{% trans %}Status{% endtrans %}</th>
|
|
<th class="provider_role">{% trans %}Role{% endtrans %}</th>
|
|
<th class="provider_actions">{% trans %}Actions{% endtrans %}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for provider in server.providers %}
|
|
<tr id='{{ provider.id }}'>
|
|
<td>{{ loop.index }}</td>
|
|
<td>
|
|
{{ provider.user.email }}
|
|
</td>
|
|
<td>
|
|
{{ provider.user.created_date }}
|
|
</td>
|
|
<td>
|
|
{{ ['NOT_ACTIVE', 'ACTIVE', 'BANNED'][provider.user.status] }}
|
|
</td>
|
|
<td>
|
|
{{ ['READ', 'WRITE', 'SUPPORT', 'ADMIN'][provider.role] }}
|
|
</td>
|
|
<td>
|
|
<button type="submit" class="btn btn-danger btn-xs"
|
|
onclick="remove_provider_from_server('{{ server.id }}', '{{ provider.user.id }}')">
|
|
{% trans %}Remove{% endtrans %}
|
|
</button>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="row">
|
|
<button type="submit" class="btn btn-success col-md-12"
|
|
onclick="add_provider_to_server('{{ server.id }}')">
|
|
{% trans %}Add provider{% endtrans %}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="service_dialog" class="modal fade" tabindex=-1 role="dialog">
|
|
<div class="modal-dialog" role="document">
|
|
<div class="modal-content">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{%- endblock %}
|
|
|
|
{% block scripts %}
|
|
{{ super() }}
|
|
<script type="text/javascript" charset="utf-8">
|
|
function add_provider_to_server_entry(url) {
|
|
$.ajax({
|
|
url: url,
|
|
type: "POST",
|
|
dataType: 'json',
|
|
data: $('#provider_entry_form').serialize(),
|
|
success: function (response) {
|
|
console.log(response);
|
|
$('#service_dialog').modal('hide');
|
|
window.location.reload();
|
|
},
|
|
error: function (error) {
|
|
console.error(error);
|
|
$('#service_dialog .modal-content').html(data);
|
|
}
|
|
});
|
|
}
|
|
|
|
function add_provider_to_server(sid) {
|
|
var url = "/service/provider/add/" + sid;
|
|
$.get(url, function(data) {
|
|
$('#service_dialog .modal-content').html(data);
|
|
$('#service_dialog').modal();
|
|
|
|
$('#apply').click(function(event) {
|
|
event.preventDefault();
|
|
add_provider_to_server_entry(url);
|
|
})
|
|
});
|
|
}
|
|
|
|
function remove_provider_from_server(sid, pid) {
|
|
var url = "/service/provider/remove/" + sid;
|
|
$.ajax({
|
|
url: url,
|
|
type: "POST",
|
|
contentType : 'application/json',
|
|
data: JSON.stringify({"pid":pid}),
|
|
success: function (response) {
|
|
console.log(response);
|
|
window.location.reload();
|
|
},
|
|
error: function (error) {
|
|
console.error(error);
|
|
}
|
|
});
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
{%- endblock %}
|