mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-09 23:20:27 +00:00
Merge remote-tracking branch 'chinkung/master'
This commit is contained in:
commit
45b8c0c12b
@ -68,7 +68,15 @@
|
|||||||
"searching" : true,
|
"searching" : true,
|
||||||
"ordering" : true,
|
"ordering" : true,
|
||||||
"info" : true,
|
"info" : true,
|
||||||
"autoWidth" : false
|
"autoWidth" : false,
|
||||||
|
"columnDefs": [
|
||||||
|
{
|
||||||
|
"render": function ( data, type, row ) {
|
||||||
|
return moment.utc(data).local().format('YYYY-MM-DD HH:mm:ss');
|
||||||
|
},
|
||||||
|
"targets": 2
|
||||||
|
}
|
||||||
|
]
|
||||||
});
|
});
|
||||||
$(document.body).on('click', '.history-info-button', function() {
|
$(document.body).on('click', '.history-info-button', function() {
|
||||||
var modal = $("#modal_history_info");
|
var modal = $("#modal_history_info");
|
||||||
|
@ -188,6 +188,8 @@
|
|||||||
<script src="{{ url_for('static', filename='adminlte2/plugins/iCheck/icheck.min.js') }}"></script>
|
<script src="{{ url_for('static', filename='adminlte2/plugins/iCheck/icheck.min.js') }}"></script>
|
||||||
<!-- FastClick -->
|
<!-- FastClick -->
|
||||||
<script src="{{ url_for('static', filename='adminlte2/plugins/fastclick/fastclick.js') }}"></script>
|
<script src="{{ url_for('static', filename='adminlte2/plugins/fastclick/fastclick.js') }}"></script>
|
||||||
|
<!-- Moment.js -->
|
||||||
|
<script src="{{ url_for('static', filename='adminlte2/plugins/daterangepicker/moment.min.js') }}"></script>
|
||||||
<!-- AdminLTE App -->
|
<!-- AdminLTE App -->
|
||||||
<script src="{{ url_for('static', filename='adminlte2/dist/js/app.min.js') }}"></script>
|
<script src="{{ url_for('static', filename='adminlte2/dist/js/app.min.js') }}"></script>
|
||||||
<!-- Multiselect -->
|
<!-- Multiselect -->
|
||||||
|
@ -162,7 +162,15 @@
|
|||||||
"searching" : false,
|
"searching" : false,
|
||||||
"ordering" : false,
|
"ordering" : false,
|
||||||
"info" : false,
|
"info" : false,
|
||||||
"autoWidth" : false
|
"autoWidth" : false,
|
||||||
|
"columnDefs": [
|
||||||
|
{
|
||||||
|
"render": function ( data, type, row ) {
|
||||||
|
return moment.utc(data).local().format('YYYY-MM-DD HH:mm:ss');
|
||||||
|
},
|
||||||
|
"targets": 2
|
||||||
|
}
|
||||||
|
]
|
||||||
});
|
});
|
||||||
// set up domain list
|
// set up domain list
|
||||||
$("#tbl_domain_list").DataTable({
|
$("#tbl_domain_list").DataTable({
|
||||||
|
Loading…
Reference in New Issue
Block a user