2021-11-30 09:02:37 +00:00
|
|
|
{% extends "base.html" %}
|
2023-02-18 16:04:14 +00:00
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
<title>
|
|
|
|
{{ domain.name | pretty_domain_name }} - {{ SITE_NAME }}
|
|
|
|
</title>
|
|
|
|
{% endblock %}
|
2021-11-30 09:02:37 +00:00
|
|
|
|
|
|
|
{% block dashboard_stat %}
|
2023-02-18 16:04:14 +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">
|
|
|
|
{% if record_name and record_type %}
|
|
|
|
Record changelog: <b>{{ record_name}}   {{ record_type }}</b>
|
|
|
|
{% else %}
|
|
|
|
Domain changelog: <b>{{ domain.name | pretty_domain_name }}</b>
|
|
|
|
{% endif %}
|
|
|
|
</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>
|
|
|
|
<li class="breadcrumb-item active">Changelog: {{ domain.name | pretty_domain_name }}</li>
|
|
|
|
</ol>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-11-30 09:02:37 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% import 'applied_change_macro.html' as applied_change_macro %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<section class="content">
|
2023-02-18 16:04:14 +00:00
|
|
|
<div class="container-fluid">
|
2021-11-30 09:02:37 +00:00
|
|
|
<div class="row">
|
2023-02-18 16:04:14 +00:00
|
|
|
<div class="col-12">
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-body">
|
|
|
|
<button type="button" class="btn btn-primary float-left button_show_records" id="{{ domain.name }}">
|
|
|
|
<i class="fa-solid fa-arrow-left"></i>
|
|
|
|
Manage Domain {{ domain.name }}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
|
|
<table id="tbl_changelog" class="table table-bordered table-striped">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Changed on</th>
|
|
|
|
<th>Changed by</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for applied_change in allHistoryChanges %}
|
|
|
|
<tr class="odd row_record" id="{{ domain.name }}">
|
|
|
|
<td id="changed_on" class="changed_on">
|
|
|
|
{{ allHistoryChanges[applied_change][0].history_entry.created_on }}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{{allHistoryChanges[applied_change][0].history_entry.created_by }}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<!-- Nested Table -->
|
|
|
|
<tr style='visibility:collapse'>
|
|
|
|
<td colspan="2">
|
|
|
|
<div class="content">
|
|
|
|
{% call applied_change_macro.applied_change_template(allHistoryChanges[applied_change]) %}
|
|
|
|
{% endcall %}
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<!-- end nested table -->
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2021-11-30 09:02:37 +00:00
|
|
|
</div>
|
2023-02-18 16:04:14 +00:00
|
|
|
</div>
|
2021-11-30 09:02:37 +00:00
|
|
|
</div>
|
2023-02-18 16:04:14 +00:00
|
|
|
</div>
|
2021-11-30 09:02:37 +00:00
|
|
|
</section>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block extrascripts %}
|
|
|
|
<script>
|
|
|
|
// handle "show records" button
|
|
|
|
$(document.body).on("click", ".button_show_records", function (e) {
|
|
|
|
e.stopPropagation();
|
|
|
|
window.location.href = "/domain/{{domain.name}}";
|
|
|
|
});
|
|
|
|
|
|
|
|
var coll = document.getElementsByClassName("collapsible");
|
|
|
|
var i;
|
|
|
|
|
|
|
|
for (i = 0; i < coll.length; i++) {
|
|
|
|
coll[i].addEventListener("click", function () {
|
|
|
|
this.classList.toggle("active");
|
|
|
|
var content = this.nextElementSibling;
|
|
|
|
if (content.style.maxHeight) {
|
|
|
|
content.style.maxHeight = null;
|
|
|
|
} else {
|
|
|
|
content.style.maxHeight = content.scrollHeight + "px";
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// handle click on history record
|
|
|
|
$(document.body).on("click", ".row_record", function (e) {
|
|
|
|
e.stopPropagation();
|
|
|
|
var nextRow = $(this).next('tr')
|
|
|
|
if (nextRow.css("visibility") == "visible")
|
|
|
|
nextRow.css("visibility", "collapse")
|
|
|
|
else
|
|
|
|
nextRow.css("visibility", "visible")
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
var els = document.getElementsByClassName("changed_on");
|
|
|
|
for (var i = 0; i < els.length; i++) {
|
|
|
|
// els[i].innerHTML = moment.utc(els[i].innerHTML).local().format('YYYY-MM-DD HH:mm:ss');
|
|
|
|
els[i].innerHTML = moment.utc(els[i].innerHTML,'YYYY-MM-DD HH:mm:ss').local().format('YYYY-MM-DD HH:mm:ss');
|
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
|
|
{% endblock %}
|