Merge branch 'develop' of https://github.com/frappe/lms into zen-mode

This commit is contained in:
Jannat Patel
2025-04-25 10:20:38 +05:30
4 changed files with 17 additions and 8 deletions

View File

@@ -98,7 +98,7 @@
{{ __('Location') }}
</span>
<span class="text-sm font-semibold">
{{ job.data.location }}
{{ job.data.location }}, {{ job.data.country }}
</span>
</div>
</div>

View File

@@ -14,16 +14,21 @@
{{ __('Job Details') }}
</div>
<div class="grid grid-cols-2 gap-5">
<div>
<div class="space-y-4">
<FormControl
v-model="job.job_title"
:label="__('Title')"
class="mb-4"
:required="true"
/>
<FormControl
v-model="job.location"
:label="__('Location')"
:label="__('City')"
:required="true"
/>
<Link
v-model="job.country"
doctype="Country"
:label="__('Country')"
:required="true"
/>
</div>
@@ -217,6 +222,7 @@ const imageResource = createResource({
const job = reactive({
job_title: '',
location: '',
country: '',
type: 'Full Time',
status: 'Open',
company_name: '',