42 lines
1.0 KiB
Twig
42 lines
1.0 KiB
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block encorelinktags %}
|
|
{{ encore_entry_link_tags('dropzone') }}
|
|
{% endblock encorelinktags %}
|
|
|
|
|
|
{% block body %}
|
|
<h3 class="page-header"></h3>
|
|
<button class="btn btn-secondary" onClick="closeModal();">Annuler</button>
|
|
|
|
<form
|
|
action="{{ oneup_uploader_endpoint(type) }}"
|
|
class="dropzone"
|
|
id="mydropzone"
|
|
data-acceptedMimeTypes="image/*"
|
|
data-maxFiles=1
|
|
|
|
style="margin-top:10px">
|
|
</form>
|
|
|
|
|
|
{% endblock %}
|
|
|
|
{% block encorescripttags %}
|
|
{{ encore_entry_script_tags('dropzone') }}
|
|
{% endblock %}
|
|
|
|
{% block localjavascript %}
|
|
window.parent.$(".modal-title").html("ETAPE 1 - Téléchargez votre image");
|
|
|
|
function dropzoneinit( elt) {
|
|
}
|
|
function dropzonesuccess( file, response ) {
|
|
$(location).attr('href',"{{ path('app_crop02', {"type": type, "reportinput": reportinput }) }}?file="+response["file"]);
|
|
}
|
|
|
|
function closeModal() {
|
|
window.parent.$("#mymodallarge").modal('hide');
|
|
}
|
|
{% endblock %}
|