2015-12-13 09:34:12 +00:00
|
|
|
{% extends "base.html" %}
|
2018-08-18 11:41:59 +00:00
|
|
|
{% set active_page = "dashboard" %}
|
2023-02-19 13:52:00 +00:00
|
|
|
{% block title %}<title>Dashboard - {{ SITE_NAME }}</title>{% endblock %}
|
2021-11-30 09:02:37 +00:00
|
|
|
|
2015-12-13 09:34:12 +00:00
|
|
|
{% block dashboard_stat %}
|
2023-02-19 13:52:00 +00:00
|
|
|
<div class="content-header">
|
|
|
|
<div class="container-fluid">
|
|
|
|
<div class="row mb-2">
|
|
|
|
<div class="col-sm-6">
|
|
|
|
<h1 class="m-0 text-dark">
|
|
|
|
Dashboard
|
|
|
|
</h1>
|
|
|
|
</div>
|
|
|
|
<div class="col-sm-6">
|
|
|
|
<ol class="breadcrumb float-sm-right">
|
|
|
|
<li class="breadcrumb-item"><a href="{{ url_for('dashboard.dashboard') }}">Dashboard</a></li>
|
|
|
|
</ol>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-02-18 16:04:14 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-12-13 09:34:12 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
2021-11-30 09:02:37 +00:00
|
|
|
{% import 'applied_change_macro.html' as applied_change_macro %}
|
|
|
|
|
2015-12-13 09:34:12 +00:00
|
|
|
{% block content %}
|
2023-02-19 13:52:00 +00:00
|
|
|
<section class="content">
|
|
|
|
<div class="container-fluid">
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-12">
|
2023-02-19 20:12:34 +00:00
|
|
|
<div class="card card-outline card-secondary shadow">
|
2023-02-19 13:52:00 +00:00
|
|
|
<div class="card-header">
|
|
|
|
<h3 class="card-title">Statistics</h3>
|
2016-06-18 04:41:01 +00:00
|
|
|
</div>
|
2023-02-19 13:52:00 +00:00
|
|
|
<!-- /.card-header -->
|
|
|
|
<div class="card-body">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-6 col-sm-3">
|
|
|
|
<div class="small-box bg-info">
|
|
|
|
<div class="inner">
|
|
|
|
<h3>{{ domain_count }}</h3>
|
|
|
|
<p>{% if domain_count > 1 %}Domains{% else %}Domain{% endif %}</p>
|
|
|
|
</div>
|
|
|
|
<div class="icon">
|
|
|
|
<i class="fa-solid fa-book"></i>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col-6 col-sm-3">
|
|
|
|
<a href="{{ url_for('admin.history') }}">
|
|
|
|
<div class="small-box bg-green">
|
|
|
|
<div class="inner">
|
|
|
|
<h3>{{ history_number }}</h3>
|
|
|
|
<p>{% if history_number > 1 %}Histories{% else %}
|
|
|
|
History{% endif %}</p>
|
|
|
|
</div>
|
|
|
|
<div class="icon">
|
|
|
|
<i class="fa-solid fa-calendar"></i>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{% if current_user.role.name in ['Administrator', 'Operator'] %}
|
|
|
|
<div class="col-6 col-sm-3">
|
|
|
|
<a href="{{ url_for('admin.manage_user') }}">
|
|
|
|
<div class="small-box bg-green">
|
|
|
|
<div class="inner">
|
|
|
|
<h3>{{ user_num }}</h3>
|
|
|
|
<p>{% if user_num > 1 %}Users{% else %}User{% endif %}</p>
|
|
|
|
</div>
|
|
|
|
<div class="icon">
|
|
|
|
<i class="fa-solid fa-users"></i>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="col-6 col-sm-3">
|
2023-02-19 20:12:34 +00:00
|
|
|
<a href="{{ url_for('admin.server_statistics') }}">
|
2023-02-19 13:52:00 +00:00
|
|
|
<div class="small-box bg-green">
|
|
|
|
<div class="inner">
|
|
|
|
<h3><span
|
|
|
|
style="font-size: 18px">{{ uptime|display_second_to_time }}</span>
|
|
|
|
</h3>
|
|
|
|
<p>Uptime</p>
|
|
|
|
</div>
|
|
|
|
<div class="icon">
|
|
|
|
<i class="fa-solid fa-clock"></i>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
<!-- /.row -->
|
|
|
|
</div>
|
|
|
|
<!-- /.card-body -->
|
2016-06-18 04:41:01 +00:00
|
|
|
</div>
|
2023-02-19 13:52:00 +00:00
|
|
|
<!-- /.card -->
|
2023-02-18 16:04:14 +00:00
|
|
|
</div>
|
2023-02-19 13:52:00 +00:00
|
|
|
<!-- /.col -->
|
|
|
|
</div>
|
|
|
|
<!-- /.row -->
|
|
|
|
|
|
|
|
{% if current_user.role.name in ['Administrator', 'Operator'] or SETTING.get('allow_user_view_history') %}
|
2023-02-18 16:04:14 +00:00
|
|
|
<div class="row">
|
2023-02-19 13:52:00 +00:00
|
|
|
<div class="col-12">
|
2023-02-19 20:12:34 +00:00
|
|
|
<div class="card card-outline card-secondary shadow">
|
2023-02-19 13:52:00 +00:00
|
|
|
<div class="card-header">
|
2023-02-23 11:56:18 +00:00
|
|
|
<h3 class="card-title">Recent Activity</h3>
|
2023-02-19 13:52:00 +00:00
|
|
|
</div>
|
|
|
|
<!-- /.card-header -->
|
2023-02-19 20:12:34 +00:00
|
|
|
<div class="card-body table-responsive records p-0">
|
2023-02-19 16:38:19 +00:00
|
|
|
<table class="table table-striped table-hover table-sm records">
|
2023-02-19 13:52:00 +00:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Log Message</th>
|
|
|
|
<th>Timestamp</th>
|
2023-02-19 16:38:19 +00:00
|
|
|
<th>User</th>
|
2023-02-19 13:52:00 +00:00
|
|
|
<th>Actions</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for history in histories %}
|
|
|
|
<tr class="odd">
|
|
|
|
<td>{{ history.history.msg }}</td>
|
|
|
|
<td>{{ history.history.created_on | format_datetime_local }}</td>
|
2023-02-19 16:38:19 +00:00
|
|
|
<td>{{ history.history.created_by }}</td>
|
2023-02-19 13:52:00 +00:00
|
|
|
<td>
|
|
|
|
<div id="history-info-div-{{ loop.index0 }}" style="display: none;">
|
|
|
|
{{ history.detailed_msg | safe }}
|
|
|
|
{% if history.change_set %}
|
|
|
|
<div class="content">
|
|
|
|
<div id="change_index_definition"></div>
|
|
|
|
{% call applied_change_macro.applied_change_template(history.change_set) %}
|
|
|
|
{% endcall %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
<button type="button" class="btn btn-sm btn-primary history-info-button"
|
2023-02-19 16:38:19 +00:00
|
|
|
title="View Additional Information"
|
2023-02-19 13:52:00 +00:00
|
|
|
{% if history.detailed_msg == "" and history.change_set is none %}
|
|
|
|
style="visibility: hidden;"
|
|
|
|
{% endif %} value="{{ loop.index0 }}">
|
2023-02-19 16:38:19 +00:00
|
|
|
<i class="fa-solid fa-info-circle"></i>
|
2023-02-19 13:52:00 +00:00
|
|
|
</button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
<!-- /.card-body -->
|
2016-06-18 04:41:01 +00:00
|
|
|
</div>
|
2023-02-19 13:52:00 +00:00
|
|
|
<!-- /.card -->
|
|
|
|
</div>
|
|
|
|
<!-- /.col -->
|
|
|
|
</div>
|
|
|
|
<!-- /.row -->
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-12">
|
2023-02-19 20:12:34 +00:00
|
|
|
<div class="card card-outline card-primary shadow">
|
2023-02-19 13:52:00 +00:00
|
|
|
<div class="card-header">
|
2023-02-20 17:37:22 +00:00
|
|
|
<h3 class="card-title mb-2">
|
2023-02-19 15:19:13 +00:00
|
|
|
Zones
|
|
|
|
{% if show_bg_domain_button %}
|
|
|
|
<button type="button" title="Synchronize Zones"
|
|
|
|
class="btn btn-tool refresh-bg-button">
|
|
|
|
<i class="fa-solid fa-sync"></i>
|
|
|
|
</button>
|
|
|
|
{% endif %}
|
|
|
|
</h3>
|
|
|
|
<div class="card-tools">
|
|
|
|
<div class="nav-tabs-custom">
|
|
|
|
<ul class="nav nav-tabs card-header-tabs" id="custom-content-below-tab"
|
|
|
|
role="tablist">
|
2023-02-19 13:52:00 +00:00
|
|
|
<li class="nav-item">
|
2023-02-19 15:19:13 +00:00
|
|
|
<a class="nav-link active" href="#tab_{{ custom_boxes.order[0] }}"
|
|
|
|
data-toggle="pill" role="tab">
|
|
|
|
Zones <b>{{ custom_boxes.boxes[custom_boxes.order[0]][0] }}</b>
|
|
|
|
</a>
|
2023-02-19 13:52:00 +00:00
|
|
|
</li>
|
2023-02-19 15:19:13 +00:00
|
|
|
{% for boxId in custom_boxes.order[1:] %}
|
|
|
|
<li class="nav-item">
|
|
|
|
<a class="nav-link" href="#tab_{{ boxId }}" data-toggle="pill"
|
|
|
|
role="tab">
|
|
|
|
Zones <b>{{ custom_boxes.boxes[boxId][0] }}</b>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
2023-02-19 13:52:00 +00:00
|
|
|
</div>
|
2016-06-18 04:41:01 +00:00
|
|
|
</div>
|
2023-02-19 14:11:44 +00:00
|
|
|
<!-- /.card-header -->
|
|
|
|
<div class="card-body p-0">
|
2023-02-19 13:52:00 +00:00
|
|
|
<div class="tab-content">
|
|
|
|
{% for boxId in custom_boxes.order %}
|
2023-02-19 15:19:13 +00:00
|
|
|
<div class="tab-pane show" id='tab_{{ boxId }}'>
|
2023-02-19 20:12:34 +00:00
|
|
|
<div class="card-body table-responsive records p-0 pt-2">
|
2023-02-19 13:52:00 +00:00
|
|
|
<table id='tbl_domain_list_{{ boxId }}'
|
2023-02-19 16:38:19 +00:00
|
|
|
class="table table-striped table-hover table-sm records">
|
2023-02-19 13:52:00 +00:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>DNSSEC</th>
|
|
|
|
<th>Type</th>
|
|
|
|
<th>Serial</th>
|
|
|
|
<th>Primary</th>
|
|
|
|
<th>Account</th>
|
|
|
|
<th>Actions</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2023-02-19 14:11:44 +00:00
|
|
|
<!-- /.card-body -->
|
2023-02-19 13:52:00 +00:00
|
|
|
</div>
|
2023-02-19 14:11:44 +00:00
|
|
|
<!-- /.tab-pane -->
|
2023-02-19 13:52:00 +00:00
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2023-02-19 14:11:44 +00:00
|
|
|
<!-- /.tab-content -->
|
2016-06-18 04:41:01 +00:00
|
|
|
</div>
|
2023-02-19 14:11:44 +00:00
|
|
|
<!-- /.card-body -->
|
2016-06-18 04:41:01 +00:00
|
|
|
</div>
|
2023-02-19 14:11:44 +00:00
|
|
|
<!-- /.card -->
|
2023-02-18 16:04:14 +00:00
|
|
|
</div>
|
2023-02-19 14:11:44 +00:00
|
|
|
<!-- /.col -->
|
2023-02-18 16:04:14 +00:00
|
|
|
</div>
|
2023-02-19 14:11:44 +00:00
|
|
|
<!-- /.row -->
|
2023-02-18 16:04:14 +00:00
|
|
|
</div>
|
2023-02-19 14:11:44 +00:00
|
|
|
<!-- /.container-fluid -->
|
2023-02-19 13:52:00 +00:00
|
|
|
</section>
|
2015-12-13 09:34:12 +00:00
|
|
|
{% endblock %}
|
2023-02-18 16:04:14 +00:00
|
|
|
|
2023-02-19 14:11:44 +00:00
|
|
|
{% block head_styles %}
|
2023-02-19 16:42:39 +00:00
|
|
|
<style>
|
2023-02-19 15:19:13 +00:00
|
|
|
/* Page Specific Overrides */
|
|
|
|
table.records tbody td:first-of-type { text-align: left; }
|
|
|
|
</style>
|
2023-02-19 14:11:44 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
2016-04-27 23:55:04 +00:00
|
|
|
{% block extrascripts %}
|
2023-02-19 13:52:00 +00:00
|
|
|
<script>
|
|
|
|
//SYBPATCH START//
|
|
|
|
function setUpDomainList(id, url) {
|
|
|
|
$(id).DataTable({
|
|
|
|
"paging": true,
|
|
|
|
"lengthChange": true,
|
|
|
|
language: {
|
|
|
|
searchPlaceholder: "Use ^ and $ for start and end",
|
|
|
|
},
|
|
|
|
"searching": true,
|
|
|
|
"ordering": true,
|
|
|
|
"columnDefs": [
|
|
|
|
{"orderable": false, "targets": [-1]}
|
|
|
|
],
|
|
|
|
"processing": true,
|
|
|
|
"serverSide": true,
|
|
|
|
"ajax": url,
|
|
|
|
"info": false,
|
|
|
|
"autoWidth": false,
|
|
|
|
{% if SETTING.get('default_domain_table_size')|string in ['10','25','50','100'] %}
|
|
|
|
"lengthMenu": [[10, 25, 50, 100, -1],
|
|
|
|
[10, 25, 50, 100, "All"]],
|
|
|
|
{% else %}
|
|
|
|
"lengthMenu": [[10, 25, 50, 100, {{ SETTING.get('default_domain_table_size') }}, -1],
|
|
|
|
[10, 25, 50, 100, {{ SETTING.get('default_domain_table_size') }}, "All"]],
|
|
|
|
{% endif %}
|
|
|
|
"pageLength": {{ SETTING.get('default_domain_table_size') }}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
$('#tab_{{custom_boxes.order[0]}}').addClass("active");
|
|
|
|
{% for boxId in custom_boxes.order %}
|
|
|
|
setUpDomainList("#tbl_domain_list_{{boxId}}", "{{url_for('dashboard.domains_custom',boxId=boxId)}}");
|
|
|
|
{% endfor %}
|
|
|
|
//SYBPATCH END//
|
|
|
|
|
|
|
|
$(document.body).on('click', '.history-info-button', function () {
|
|
|
|
var modal = $("#modal_history_info");
|
|
|
|
var history_id = $(this).val();
|
|
|
|
var info = $("#history-info-div-" + history_id).html();
|
|
|
|
$('#modal-info-content').html(info);
|
|
|
|
modal.modal('show');
|
|
|
|
});
|
2018-01-23 15:23:21 +00:00
|
|
|
|
2023-02-19 13:52:00 +00:00
|
|
|
$(document.body).on('click', '.refresh-bg-button', function () {
|
|
|
|
var modal = $("#modal_bg_reload");
|
|
|
|
modal.modal('show');
|
|
|
|
reload_domains($SCRIPT_ROOT + '/dashboard/domains-updater');
|
|
|
|
});
|
2018-06-08 11:25:43 +00:00
|
|
|
|
2023-02-19 13:52:00 +00:00
|
|
|
$(document.body).on("click", ".button_template", function (e) {
|
|
|
|
var modal = $("#modal_template");
|
|
|
|
var domain = $(this).prop('id');
|
|
|
|
var form = " <label for=\"template_name\">Template name</label> \
|
2018-01-23 15:23:21 +00:00
|
|
|
<input type=\"text\" class=\"form-control\" name=\"template_name\" id=\"template_name\" placeholder=\"Enter a valid template name (required)\"> \
|
|
|
|
<label for=\"template_description\">Template description</label> \
|
|
|
|
<input type=\"text\" class=\"form-control\" name=\"template_description\" id=\"template_description\" placeholder=\"Enter a template description (optional)\"> \
|
2023-02-19 13:52:00 +00:00
|
|
|
<input id=\"domain\" name=\"domain\" type=\"hidden\" value=\"" + domain + "\"> \
|
2018-01-23 15:23:21 +00:00
|
|
|
";
|
2023-02-19 13:52:00 +00:00
|
|
|
modal.find('.modal-body p').html(form);
|
|
|
|
modal.find('#button_save').click(function () {
|
|
|
|
var data = {'_csrf_token': '{{ csrf_token() }}'};
|
|
|
|
data['name'] = modal.find('#template_name').val();
|
|
|
|
data['description'] = modal.find('#template_description').val();
|
|
|
|
data['domain'] = modal.find('#domain').val();
|
|
|
|
applyChanges(data, "{{ url_for('admin.create_template_from_zone') }}", true);
|
|
|
|
modal.modal('hide');
|
|
|
|
})
|
|
|
|
modal.find('#button_close').click(function () {
|
|
|
|
modal.modal('hide');
|
|
|
|
})
|
2018-11-21 03:24:33 +00:00
|
|
|
|
2023-02-19 13:52:00 +00:00
|
|
|
modal.modal('show');
|
|
|
|
});
|
2018-04-02 06:38:53 +00:00
|
|
|
|
2023-02-19 13:52:00 +00:00
|
|
|
{% if current_user.role.name in ['Administrator', 'Operator'] or not SETTING.get('dnssec_admins_only') %}
|
|
|
|
$(document.body).on("click", ".button_dnssec", function () {
|
|
|
|
var domain = $(this).prop('id');
|
|
|
|
getdnssec($SCRIPT_ROOT + '/domain/' + domain + '/dnssec', domain);
|
|
|
|
});
|
2018-03-05 10:18:29 +00:00
|
|
|
|
2023-02-19 13:52:00 +00:00
|
|
|
$(document.body).on("click", ".button_dnssec_enable", function () {
|
|
|
|
var domain = $(this).prop('id');
|
|
|
|
enable_dns_sec($SCRIPT_ROOT + '/domain/' + domain + '/dnssec/enable', '{{ csrf_token() }}');
|
|
|
|
});
|
2018-03-05 13:50:33 +00:00
|
|
|
|
2023-02-19 13:52:00 +00:00
|
|
|
$(document.body).on("click", ".button_dnssec_disable", function () {
|
|
|
|
var domain = $(this).prop('id');
|
|
|
|
enable_dns_sec($SCRIPT_ROOT + '/domain/' + domain + '/dnssec/disable', '{{ csrf_token() }}');
|
|
|
|
});
|
|
|
|
{% endif %}
|
|
|
|
</script>
|
2016-04-27 23:55:04 +00:00
|
|
|
{% endblock %}
|
2023-02-18 16:04:14 +00:00
|
|
|
|
2016-04-27 23:55:04 +00:00
|
|
|
{% block modals %}
|
2023-02-19 13:52:00 +00:00
|
|
|
<div class="modal fade" id="modal_history_info">
|
|
|
|
<div class="modal-dialog">
|
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
|
|
<h4 class="modal-title">History Details</h4>
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
|
|
<span aria-hidden="true">×</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
|
|
<div id="modal-info-content">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
|
|
<button type="button" class="btn btn-secondary float-right" data-dismiss="modal">
|
|
|
|
Close
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-06-18 04:41:01 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-02-18 16:04:14 +00:00
|
|
|
|
2023-02-19 13:52:00 +00:00
|
|
|
<div class="modal fade modal-primary" id="modal_template">
|
|
|
|
<div class="modal-dialog">
|
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
|
|
<h4 class="modal-title">Clone to template</h4>
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
|
|
<span aria-hidden="true">×</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
|
|
<p></p>
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
|
|
<button type="button" class="btn btn-secondary float-right" id="button_close" data-dismiss="modal">
|
|
|
|
Close
|
|
|
|
</button>
|
|
|
|
<button type="button" class="btn btn-primary float-right" id="button_save">
|
|
|
|
Save
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-01-23 15:23:21 +00:00
|
|
|
</div>
|
2023-02-18 16:04:14 +00:00
|
|
|
|
2023-02-19 13:52:00 +00:00
|
|
|
<div class="modal fade" id="modal_dnssec_info">
|
|
|
|
<div class="modal-dialog">
|
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
|
|
<h4 class="modal-title">DNSSEC</h4>
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
|
|
<span aria-hidden="true">×</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
|
|
<p></p>
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
|
|
<button type="button" class="btn btn-secondary float-right" data-dismiss="modal">
|
|
|
|
Close
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-06-18 04:41:01 +00:00
|
|
|
</div>
|
2023-02-18 14:04:37 +00:00
|
|
|
|
2023-02-19 13:52:00 +00:00
|
|
|
<div class="modal fade" id="modal_bg_reload">
|
|
|
|
<div class="modal-dialog">
|
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
|
|
<h4 class="modal-title">Sync Domains from backend</h4>
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
|
|
<span aria-hidden="true">×</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
|
|
<div id="modal_bg_reload_content">
|
|
|
|
<i class="fa fa-refresh fa-spin"></i> Update in progress ..
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
|
|
<button type="button" class="btn btn-secondary float-right" data-dismiss="modal">
|
|
|
|
Close
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-06-08 11:25:21 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-04-27 23:55:04 +00:00
|
|
|
{% endblock %}
|