diff --git a/hrms/www/jobs/index.css b/hrms/www/jobs/index.css index 48f0f928ad..ffa831bbfd 100644 --- a/hrms/www/jobs/index.css +++ b/hrms/www/jobs/index.css @@ -10,10 +10,6 @@ p { margin-bottom: 0; } -.primary-stroke { - --icon-stroke: var(--primary); -} - .text-18 { font-size: 18px; } @@ -63,3 +59,7 @@ p { .zoom:hover { transform: scale(1.01); } + +.light-stroke { + --icon-stroke: var(--gray-500); +} diff --git a/hrms/www/jobs/index.html b/hrms/www/jobs/index.html index 60c7921822..4b5fc99fb1 100644 --- a/hrms/www/jobs/index.html +++ b/hrms/www/jobs/index.html @@ -9,10 +9,11 @@

{{ _("Job Openings") }}

-
+ +
{% for name, values in all_filters.items() %}

{{ name.title() | replace('_', ' ') }}

@@ -91,15 +92,26 @@

{{ _("Job Openings") }}

Showing {{ job_openings|length }} {{ "result" if job_openings|length == 1 else "results" }}

{% for jo in job_openings %} -
+

{{ jo.job_title }}

-
-

{{ jo.posted_on }}

+
+ {%- if jo.employment_type -%} + {%- if jo.employment_type == "Full-time" -%} +
• {{ jo.employment_type }}
+ {%- elif jo.employment_type == "Part-time" -%} +
• {{ jo.employment_type }}
+ {%- else -%} +
• {{ jo.employment_type }}
+ {% endif %} + {% endif %}
-
+
@@ -114,25 +126,15 @@

{{ jo.job_title }}

- + -

{{ jo.location }}

+

{{ jo.location }}

{% endif %}
-

- {%- if jo.closes_on -%}{{ _("Closes on " + frappe.format_date(jo.closes_on, "d MMM, YYYY") ) }}{% endif %} - {%- if jo.no_of_applications and jo.closes_on -%}{{ " · " }}{% endif %} - {%- if jo.no_of_applications -%} - {{ jo.no_of_applications }} - {{ _(" applicant" if jo.no_of_applications == 1 else " applicants") }} - {% endif %} -

-
-
{%- if jo.publish_salary_range -%}

@@ -143,17 +145,17 @@

{{ jo.job_title }}

{{ jo.salary_type.lower() }}

{% endif %} -
- {%- if jo.employment_type -%} - {%- if jo.employment_type == "Full-time" -%} - • {{ jo.employment_type }} - {%- elif jo.employment_type == "Part-time" -%} - • {{ jo.employment_type }} - {%- else -%} - • {{ jo.employment_type }} - {% endif %} +
+
+

+ {%- if jo.closes_on -%}{{ _("Closes on " + frappe.format_date(jo.closes_on, "d MMM, YYYY") ) }}{% endif %} + {%- if jo.no_of_applications and jo.closes_on -%}{{ " · " }}{% endif %} + {%- if jo.no_of_applications -%} + {{ jo.no_of_applications }} + {{ _(" applicant" if jo.no_of_applications == 1 else " applicants") }} {% endif %} -

+

+

{{ _("Posted ") + jo.posted_on }}

{% endfor %}