| 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/base/templates/multi_approval_condition/ |
Upload File : |
{% load i18n %} {% if range %}
<div class="row" id="conditionRangeValueRow">
<div class="col-12 col-sm-12 col-md-6 col-lg-6">
<div class="oh-input__group">
<label
class="oh-input__label"
for="{{ form.condition_start_value.id_for_label }}"
>
{% trans "Starting Value" %}
</label>
{{ form.condition_start_value }} {{ form.condition_start_value.errors }}
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6">
<div class="oh-input__group">
<label
class="oh-input__label"
for="{{ form.condition_end_value.id_for_label }}"
>
{% trans "Ending Value" %}
</label>
{{ form.condition_end_value }} {{ form.condition_end_value.errors }}
</div>
</div>
</div>
{% else %}
<div class="oh-input__group">
<label class="oh-input__label" for="{{ form.condition_value.id_for_label }}">
{% trans "Condition Value" %}
</label>
{{ form.condition_value }} {{ form.condition_value.errors }}
</div>
{% endif %}