forked from enviPath/enviPy
All html files now prettier formatted and fixes for incompatible blocks applied Co-authored-by: Tim Lorsbach <tim@lorsba.ch> Reviewed-on: enviPath/enviPy#193 Co-authored-by: Tobias O <tobias.olenyi@envipath.com> Co-committed-by: Tobias O <tobias.olenyi@envipath.com>
54 lines
1.4 KiB
HTML
54 lines
1.4 KiB
HTML
{% load static %}
|
|
<!-- Export Package -->
|
|
<div id="export_package_modal" class="modal" tabindex="-1">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h3 class="modal-title">Export Package as JSON</h3>
|
|
<button
|
|
type="button"
|
|
class="close"
|
|
data-dismiss="modal"
|
|
aria-label="Close"
|
|
>
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
By clicking on Export the Package will be serialized into a JSON and
|
|
directly downloaded.
|
|
<form
|
|
id="export-package-modal-form"
|
|
accept-charset="UTF-8"
|
|
action="{{ package.url }}"
|
|
data-remote="true"
|
|
method="GET"
|
|
>
|
|
<input type="hidden" name="export" value="true" />
|
|
</form>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-secondary" data-dismiss="modal">
|
|
Close
|
|
</button>
|
|
<button
|
|
type="button"
|
|
class="btn btn-primary"
|
|
id="export-package-modal-form-submit"
|
|
>
|
|
Export
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
$(function () {
|
|
$("#export-package-modal-form-submit").click(function (e) {
|
|
e.preventDefault();
|
|
$("#export-package-modal-form").submit();
|
|
$("#export_package_modal").modal("hide");
|
|
});
|
|
});
|
|
</script>
|