Add transfer status toggle button

This commit is contained in:
2021-10-09 19:34:12 +02:00
parent 360b61fe21
commit 23e7bf71bc
4 changed files with 57 additions and 4 deletions

View File

@ -111,6 +111,7 @@
}
{% if not auth %}
function entriesAccepted() {
$.getJSON("/api/entries/accept", (data, out) => {
if (data["value"] == 0) {
@ -125,6 +126,11 @@
})
}
{% else %}
function entriesAccepted() {
$(".enqueueButton").prop("disabled", false)
}
{% endif %}
</script>
{% endblock %}