career page filters

This commit is contained in:
Faheed 2025-11-23 14:18:31 +03:00
parent cb963d454f
commit e87700a213

View File

@ -73,13 +73,7 @@
{% for key in job_type_keys %}
<option value="{{ key }}" {% if key == selected_job_type %}selected{% endif %}>
<!-- Hard-coded mapping using IF statements -->
{% if key == 'FULL_TIME' %}{% trans "Full-time" %}{% endif %}
{% if key == 'PART_TIME' %}{% trans "Part-time" %}{% endif %}
{% if key == 'CONTRACT' %}{% trans "Contract" %}{% endif %}
{% if key == 'INTERNSHIP' %}{% trans "Internship" %}{% endif %}
{% if key == 'FACULTY' %}{% trans "Faculty" %}{% endif %}
{% if key == 'TEMPORARY' %}{% trans "Temporary" %}{% endif %}
{{key}}
</option>
{% endfor %}
</select>
@ -89,10 +83,7 @@
{% for key in workplace_type_keys %}
<option value="{{ key }}" {% if key == selected_workplace_type %}selected{% endif %}>
<!-- Hard-coded mapping using IF statements -->
{% if key == 'ON_SITE' %}{% trans "On-site" %}{% endif %}
{% if key == 'REMOTE' %}{% trans "Remote" %}{% endif %}
{% if key == 'HYBRID' %}{% trans "Hybrid" %}{% endif %}
{{key}}
</option>
{% endfor %}