Walking away

This commit is contained in:
Scott Idem
2024-03-01 19:15:22 -05:00
parent ff90fa5287
commit e69ff969f5

View File

@@ -708,7 +708,7 @@ async function handle_update__sponsorship({
<!-- Marketing for social media and email Level 1 and above with other restrictions --> <!-- Marketing for social media and email Level 1 and above with other restrictions -->
<Tab bind:group={$store_current_tab} name="tab_marketing" value={'marketing'} disabled={!$slct.sponsorship_id || $slct.sponsorship_obj.level_num < 1}> <Tab bind:group={$store_current_tab} name="tab_marketing" value={'marketing'} disabled={!$slct.sponsorship_id || $slct.sponsorship_obj.level_num < 1}>
<svelte:fragment slot="lead"><span class="fas fa-bullhorn"></span></svelte:fragment> <svelte:fragment slot="lead"><span class="fas fa-bullhorn"></span></svelte:fragment>
{#if $slct.sponsorship_obj.website_url.length > 10} {#if $slct.sponsorship_obj.website_url && $slct.sponsorship_obj.website_url.length > 10}
<span class="fas fa-check text-green-500"></span> <span class="fas fa-check text-green-500"></span>
{/if} {/if}
Marketing Marketing
@@ -717,7 +717,7 @@ async function handle_update__sponsorship({
{#if $slct.sponsorship_obj.level_num > 1} {#if $slct.sponsorship_obj.level_num > 1}
<Tab bind:group={$store_current_tab} name="tab_exhibit" value={'exhibit'} disabled={!$slct.sponsorship_id || $slct.sponsorship_obj.level_num < 2}> <Tab bind:group={$store_current_tab} name="tab_exhibit" value={'exhibit'} disabled={!$slct.sponsorship_id || $slct.sponsorship_obj.level_num < 2}>
<svelte:fragment slot="lead"><span class="fas fa-store"></span></svelte:fragment> <svelte:fragment slot="lead"><span class="fas fa-store"></span></svelte:fragment>
{#if $slct.sponsorship_obj.questions_li_json.table_exhibit} {#if $slct.sponsorship_obj.questions_li_json && $slct.sponsorship_obj.questions_li_json.table_exhibit}
<span class="fas fa-check text-green-500"></span> <span class="fas fa-check text-green-500"></span>
{/if} {/if}
Exhibitor Info Exhibitor Info
@@ -726,6 +726,9 @@ async function handle_update__sponsorship({
{#if $slct.sponsorship_obj.level_num > 2} {#if $slct.sponsorship_obj.level_num > 2}
<Tab bind:group={$store_current_tab} name="tab_session" value={'session'} disabled={!$slct.sponsorship_id || $slct.sponsorship_obj.level_num < 3}> <Tab bind:group={$store_current_tab} name="tab_session" value={'session'} disabled={!$slct.sponsorship_id || $slct.sponsorship_obj.level_num < 3}>
<svelte:fragment slot="lead"><span class="fas fa-chalkboard-teacher"></span></svelte:fragment> <svelte:fragment slot="lead"><span class="fas fa-chalkboard-teacher"></span></svelte:fragment>
{#if $slct.sponsorship_obj.questions_li_json && ($slct.sponsorship_obj.questions_li_json.virtual_session || $slct.sponsorship_obj.questions_li_json.virtual_session === 0)}
<span class="fas fa-check text-green-500"></span>
{/if}
Session Info Session Info
</Tab> </Tab>
{/if} {/if}
@@ -738,6 +741,9 @@ async function handle_update__sponsorship({
</Tab> </Tab>
<Tab bind:group={$store_current_tab} name="tab_gala_guests" value={'gala_guests'} disabled={!$slct.sponsorship_id}> <Tab bind:group={$store_current_tab} name="tab_gala_guests" value={'gala_guests'} disabled={!$slct.sponsorship_id}>
<svelte:fragment slot="lead"><span class="fas fa-users"></span></svelte:fragment> <svelte:fragment slot="lead"><span class="fas fa-users"></span></svelte:fragment>
{#if $slct.sponsorship_obj.guest_li_json && $slct.sponsorship_obj.guest_li_json.length > 0}
<span class="fas fa-check text-green-500"></span>
{/if}
Gala Guest List Gala Guest List
</Tab> </Tab>
<!-- <Tab bind:group={$store_current_tab} name="tab_options" value={'options'} disabled={!$slct.sponsorship_id}> <!-- <Tab bind:group={$store_current_tab} name="tab_options" value={'options'} disabled={!$slct.sponsorship_id}>