| Server IP : 65.108.144.40 / Your IP : 216.73.217.165 Web Server : Apache/2.4.52 (Ubuntu) System : Linux ubuntu-8gb-hel1-1 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64 User : dev ( 1000) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/erp/horilla_automations/templates/horilla_automations/ |
Upload File : |
<div id="formContainer">
{% include "generic/horilla_form.html" %}
</div>
<script>
$(document).on('click', '.oh-accordion-header', function (event) {
$(this).closest('.oh-accordion').toggleClass('oh-accordion--show');
});
$("#{{view_id}} form button").click(function (e) {
const form = document.getElementById('multipleConditionForm');
const elements = form.elements;
const queryString = Array.from(elements)
.filter(element => element.name && !element.disabled)
.map(element => encodeURIComponent(element.name) + '=' + encodeURIComponent(element.value))
.join('&');
$("#{{view_id}} form [name=condition_querystring]").val(queryString);
html = $(".note-editable #multipleConditionForm").html()
$("#{{view_id}} form [name=condition_html]").val(html);
});
$("#dynamic_field_condition").parent().removeClass("col-md-6");
// summernote
$("#dynamic_field_condition textarea")
.summernote({
height: 100,
toolbar: false,
})
.summernote("code", getHtml());
{% if form.instance.pk %}
$("#id_mail_to").val({{ form.instance.mail_to | safe }}).change()
$("#dynamic_field_condition .note-editable").html($("<form id='multipleConditionForm'></form>"));
$("#dynamic_field_condition .note-editable #multipleConditionForm").html($(`{{form.instance.condition_html|safe}}`))
$(".note-editable select").parent().find("span.select2").remove()
$(".note-editable select").parent().find(".select2-hidden-accessible").removeClass("select2-hidden-accessible")
$(".note-editable select").parent().find("select").select2();
{% endif %}
</script>