diff --git a/src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_custom_questions.svelte b/src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_custom_questions.svelte new file mode 100644 index 00000000..9f62e7cd --- /dev/null +++ b/src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_custom_questions.svelte @@ -0,0 +1,133 @@ + + +
+
+

Lead Qualifiers

+ Define questions for lead capture +
+ +
+ {#each questions as q, i} +
+ + +
+ +
+ +
+ + +
+
+ + +
+ + +
+
+ + {#if q.type === 'select'} +
+ +
+ + +
+
+ {/if} +
+ {/each} + + {#if questions.length === 0} +
+ +

No custom questions defined.

+
+ {/if} +
+ +
+ + +
+
diff --git a/src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_tab__manage.svelte b/src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_tab__manage.svelte index 00df97f4..259e618c 100644 --- a/src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_tab__manage.svelte +++ b/src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_tab__manage.svelte @@ -11,6 +11,8 @@ import { events_func } from '$lib/ae_events_functions'; import Element_ae_crud_v2 from '$lib/elements/element_ae_crud_v2.svelte'; import Comp_exhibit_license_list from './ae_comp__exhibit_license_list.svelte'; + import Comp_exhibit_custom_questions from './ae_comp__exhibit_custom_questions.svelte'; + import Comp_exhibit_payment from './ae_comp__exhibit_payment.svelte'; import { Store, Settings, @@ -36,6 +38,8 @@ // Track local status for specific actions let updating = $state(false); let show_license_mgmt = $state(false); + let show_custom_questions = $state(false); + let show_billing = $state(false);
@@ -248,27 +252,60 @@
-
-
-
-
-
Qualifiers & Questions
-
Configure follow-up responses
+
+
- + {#if show_custom_questions} + + {:else} + + {/if} + + + {#if show_custom_questions} +
+ +
+ {/if}
-
-
-
-
-
Billing & Upgrades
-
Manage subscription and extra devices
+
+
- + {#if show_billing} + + {:else} + + {/if} + + + {#if show_billing} +
+ +
+ {/if}