@@ -8,7 +8,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
v-if="batch.seat_count && batch.seats_left > 0"
|
v-if="batch.seat_count && batch.seats_left > 0"
|
||||||
class="text-xs bg-green-200 text-green-800 self-start px-2 py-0.5 rounded-md"
|
class="text-xs bg-green-100 text-green-700 self-start px-2 py-0.5 rounded-md"
|
||||||
>
|
>
|
||||||
{{ batch.seats_left }}
|
{{ batch.seats_left }}
|
||||||
<span v-if="batch.seats_left > 1">
|
<span v-if="batch.seats_left > 1">
|
||||||
@@ -20,7 +20,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
v-else-if="batch.seat_count && batch.seats_left <= 0"
|
v-else-if="batch.seat_count && batch.seats_left <= 0"
|
||||||
class="text-xs bg-red-200 text-red-900 self-start px-2 py-0.5 rounded-md"
|
class="text-xs bg-red-100 text-red-700 self-start px-2 py-0.5 rounded-md"
|
||||||
>
|
>
|
||||||
{{ __('Sold Out') }}
|
{{ __('Sold Out') }}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -137,7 +137,7 @@ const tabsStructure = computed(() => {
|
|||||||
name: 'unsplash_access_key',
|
name: 'unsplash_access_key',
|
||||||
description:
|
description:
|
||||||
'Optional. If this is set, students can pick a cover image from the unsplash library for their profile page. https://unsplash.com/documentation#getting-started.',
|
'Optional. If this is set, students can pick a cover image from the unsplash library for their profile page. https://unsplash.com/documentation#getting-started.',
|
||||||
type: 'text',
|
type: 'password',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ def send_payment_reminder():
|
|||||||
incomplete_payments = frappe.get_all(
|
incomplete_payments = frappe.get_all(
|
||||||
"LMS Payment",
|
"LMS Payment",
|
||||||
{"payment_received": 0, "creation": [">", add_days(nowdate(), -1)]},
|
{"payment_received": 0, "creation": [">", add_days(nowdate(), -1)]},
|
||||||
fields=[
|
[
|
||||||
"name",
|
"name",
|
||||||
"member",
|
"member",
|
||||||
"payment_for_document",
|
"payment_for_document",
|
||||||
|
|||||||
Reference in New Issue
Block a user