This commit is contained in:
2024-10-30 17:58:39 +01:00
parent d73127b09e
commit 8692adeae3
13 changed files with 192 additions and 88 deletions

View File

@ -0,0 +1,12 @@
{% extends 'base.html.twig' %}
{% block localjavascript %}
{% if reportinput == "refresh" %}
window.parent.location.href = window.parent.location.href;
{% elseif reportinput != "none" %}
window.parent.$("#{{ reportinput }}").val("thumb_{{ file }}");
window.parent.$("#{{ reportinput }}_img").attr("src","/{{ appAlias }}/uploads/{{ type }}/thumb_{{ file }}");
{% endif %}
window.parent.$("#extraLargeModal").modal('hide');
{% endblock %}