diff --git a/frontend/src/components/BatchCard.vue b/frontend/src/components/BatchCard.vue index 51941d53..2849f497 100644 --- a/frontend/src/components/BatchCard.vue +++ b/frontend/src/components/BatchCard.vue @@ -3,7 +3,7 @@ class="flex flex-col shadow hover:bg-gray-100 rounded-md p-4 h-full" style="min-height: 150px" > -
+
{{ batch.title }}
{{ __('Sold Out') }} -
+
{{ batch.description }}
+
+ {{ batch.price }} +
-
- {{ batch.price }} -
-
@@ -50,18 +49,21 @@ {{ batch.timezone }}
-
-
- -
- +
+
+
+
+
@@ -88,7 +90,7 @@ const props = defineProps({ text-overflow: ellipsis; width: 100%; overflow: hidden; - margin: 0.25rem 0 1.25rem; + margin: 0.25rem 0 1rem; line-height: 1.5; } diff --git a/frontend/src/components/CourseCard.vue b/frontend/src/components/CourseCard.vue index 5dd1e3c6..b5e84e3c 100644 --- a/frontend/src/components/CourseCard.vue +++ b/frontend/src/components/CourseCard.vue @@ -72,7 +72,7 @@ {{ course.title }}
-
+
{{ course.short_introduction }}
diff --git a/frontend/src/pages/JobDetail.vue b/frontend/src/pages/JobDetail.vue index 60689a41..f8483e80 100644 --- a/frontend/src/pages/JobDetail.vue +++ b/frontend/src/pages/JobDetail.vue @@ -50,9 +50,9 @@
-
+
-
+
{{ job.data.job_title }}
-
-
-
- - {{ job.data.company_name }} -
-
- - {{ job.data.location }} -
+
+
+ + {{ job.data.company_name }}
-
-
- - {{ job.data.type }} -
-
- - {{ - dayjs(job.data.creation).format('DD MMM YYYY') - }} -
+
+ + {{ job.data.location }}
-
-
+ + {{ job.data.type }} +
+
+ + + {{ dayjs(job.data.creation).format('DD MMM YYYY') }} + +
+
+ + {{ applicationCount.data }} + {{ __('applications received') }} - - {{ applicationCount.data }} - {{ __('applications received') }} -
diff --git a/lms/hooks.py b/lms/hooks.py index c89387e2..5347a372 100644 --- a/lms/hooks.py +++ b/lms/hooks.py @@ -176,7 +176,10 @@ update_website_context = [ ] jinja = { - "methods": ["lms.lms.utils.get_signup_optin_checks"], + "methods": [ + "lms.lms.utils.get_signup_optin_checks", + "lms.lms.utils.get_tags", + ], "filters": [], } ## Specify the additional tabs to be included in the user profile page.