[UPDT] BASE: Updated approval managers col in muliple approve to full_name of managers

This commit is contained in:
Horilla
2025-10-20 15:28:30 +05:30
parent 0bcdca2e5d
commit 65624af2c3
2 changed files with 6 additions and 6 deletions

View File

@@ -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>

View File

@@ -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 }}