13 lines
495 B
Twig
13 lines
495 B
Twig
{% 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 %}
|