[UPDT] BASE: Updated approval managers col in muliple approve to full_name of managers
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{% load basefilters %}
|
||||
<div>
|
||||
{% for manager in instance.approval_managers %}
|
||||
<div class="p-1"> {{ forloop.counter}}. {{ manager|readable }} <br /></div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
<div class="p-1"> {{ forloop.counter}}. {{ manager.get_full_name|default:manager|readable}} <br /></div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<div class="col-12 col-sm-12 col-md-6 col-lg-6">
|
||||
<div class="oh-input__group">
|
||||
<label
|
||||
class="oh-input__label"
|
||||
class="oh-label"
|
||||
for="{{ form.condition_start_value.id_for_label }}"
|
||||
>
|
||||
{% trans "Starting Value" %}
|
||||
@@ -14,7 +14,7 @@
|
||||
<div class="col-12 col-sm-12 col-md-6 col-lg-6">
|
||||
<div class="oh-input__group">
|
||||
<label
|
||||
class="oh-input__label"
|
||||
class="oh-label"
|
||||
for="{{ form.condition_end_value.id_for_label }}"
|
||||
>
|
||||
{% trans "Ending Value" %}
|
||||
@@ -25,7 +25,7 @@
|
||||
</div>
|
||||
{% else %}
|
||||
<div class="oh-input__group">
|
||||
<label class="oh-input__label" for="{{ form.condition_value.id_for_label }}">
|
||||
<label class="oh-label" for="{{ form.condition_value.id_for_label }}">
|
||||
{% trans "Condition Value" %}
|
||||
</label>
|
||||
{{ form.condition_value }} {{ form.condition_value.errors }}
|
||||
|
||||
Reference in New Issue
Block a user