Documentation, Fix

This commit is contained in:
Lukas
2023-03-08 08:52:27 +01:00
parent 4933351ac1
commit d055fd83c5
6 changed files with 144 additions and 4 deletions

View File

@ -216,7 +216,7 @@
$(document).ready(function () {
$.ajax({
url: "/admin/history_table",
url: '{{ url_for("admin.history_table") }}',
type: "get",
success: function (response) {
console.log('Submission was successful.');
@ -493,7 +493,7 @@
var form = $(this);
var tzoffset = (new Date()).getTimezoneOffset();
$.ajax({
url: "/admin/history_table",
url: '{{ url_for("admin.history_table") }}',
type: "get",
data: form.serialize() + "&tzoffset=" + tzoffset,
success: function (response) {