-
+
+ hrdlog_username; } ?>">
+
+
+
+
hrdlog_code; } ?>">
-
+
diff --git a/assets/js/sections/hrdlog.js b/assets/js/sections/hrdlog.js
index 9b3ce0e3..bf7779d2 100644
--- a/assets/js/sections/hrdlog.js
+++ b/assets/js/sections/hrdlog.js
@@ -21,27 +21,30 @@ function ExportHrd(station_id) {
$('#notcount'+value.station_id).html(value.notcount);
$('#totcount'+value.station_id).html(value.totcount);
});
- $(".card-body").append('
×' + data.infomessage + '
');
+ $(".card-body").append('
' + data.infomessage + '
');
}
else {
- $(".card-body").append('
');
+ $(".card-body").append('
' + data.info + '
');
}
if (data.errormessages.length > 0) {
- $(".card-body").append('' +
- '
\n' +
- ' \n' +
- '
\n' +
- '
');
- $.each(data.errormessages, function(index, value) {
+ $("#hrdlog_export").append(
+ '
\n' +
+ '
\n' +
+ ' \n' +
+ '
\n' +
+ '
\n' +
+ '
'
+ );
+ $.each(data.errormessages, function (index, value) {
$(".errors").append('
' + value);
});
}
+
}
});
}
diff --git a/assets/js/sections/qrzlogbook.js b/assets/js/sections/qrzlogbook.js
index 84cb9268..c7563046 100644
--- a/assets/js/sections/qrzlogbook.js
+++ b/assets/js/sections/qrzlogbook.js
@@ -21,24 +21,26 @@ function ExportQrz(station_id) {
$('#notcount'+value.station_id).html(value.notcount);
$('#totcount'+value.station_id).html(value.totcount);
});
- $(".card-body").append('×' + data.infomessage + '
');
+ $(".card-body").append('' + data.infomessage + '
');
}
else {
- $(".card-body").append('');
+ $(".card-body").append('' + data.info + '
');
}
if (data.errormessages.length > 0) {
- $(".card-body").append('' +
- '\n' +
- ' \n' +
- '
\n' +
- '
');
- $.each(data.errormessages, function(index, value) {
+ $("#qrz_export").append(
+ '\n' +
+ '
\n' +
+ ' \n' +
+ '
\n' +
+ '
\n' +
+ '
'
+ );
+ $.each(data.errormessages, function (index, value) {
$(".errors").append('' + value);
});
}
diff --git a/assets/js/sections/webadif.js b/assets/js/sections/webadif.js
index 6203b866..196d5f58 100644
--- a/assets/js/sections/webadif.js
+++ b/assets/js/sections/webadif.js
@@ -35,21 +35,23 @@ function ExportWebADIF(station_id) {
$(".card-body").append('×' + data.infomessage + '
');
}
else {
- $(".card-body").append('');
+ $(".card-body").append('' + data.info + '
');
}
if (data.errormessages.length > 0) {
- $(".card-body").append('' +
- '\n' +
- ' \n' +
- '
\n' +
- '
');
- $.each(data.errormessages, function(index, value) {
+ $("#adif_import").append(
+ '\n' +
+ '
\n' +
+ ' \n' +
+ '
\n' +
+ '
\n' +
+ '
'
+ );
+ $.each(data.errormessages, function (index, value) {
$(".errors").append('' + value);
});
}