Done for reals...
This commit is contained in:
@@ -708,7 +708,7 @@ async function handle_update__sponsorship({
|
||||
<!-- 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}>
|
||||
<svelte:fragment slot="lead"><span class="fas fa-bullhorn"></span></svelte:fragment>
|
||||
{#if $slct.sponsorship_obj.website_url}
|
||||
{#if $slct.sponsorship_obj.website_url.length > 10}
|
||||
<span class="fas fa-check text-green-500"></span>
|
||||
{/if}
|
||||
Marketing
|
||||
@@ -717,13 +717,18 @@ async function handle_update__sponsorship({
|
||||
{#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}>
|
||||
<svelte:fragment slot="lead"><span class="fas fa-store"></span></svelte:fragment>
|
||||
{#if $slct.sponsorship_obj.questions_li_json.table_exhibit}
|
||||
<span class="fas fa-check text-green-500"></span>
|
||||
{/if}
|
||||
Exhibitor Info
|
||||
</Tab>
|
||||
{/if}
|
||||
{#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}>
|
||||
<svelte:fragment slot="lead"><span class="fas fa-chalkboard-teacher"></span></svelte:fragment>
|
||||
Session Info
|
||||
</Tab>
|
||||
{/if}
|
||||
<Tab bind:group={$store_current_tab} name="tab_files" value={'files'} disabled={!$slct.sponsorship_id}>
|
||||
<svelte:fragment slot="lead"><span class="fas fa-file-upload"></span></svelte:fragment>
|
||||
{#if $slct.sponsorship_obj.logo_li_json && $slct.sponsorship_obj.logo_li_json.primary && $slct.sponsorship_obj.logo_li_json.primary.hosted_file_id_random}
|
||||
@@ -1178,7 +1183,7 @@ async function handle_update__sponsorship({
|
||||
|
||||
<label for="website_url" class="label">
|
||||
<!-- Website URL -->
|
||||
<input type="url" id="website_url" name="website_url" class="input text-xs w-96" placeholder="Website URL" value={$slct.sponsorship_obj.website_url} autocomplete="url" required />
|
||||
<input type="url" id="website_url" name="website_url" class="input text-xs w-96" placeholder="Website URL" bind:value={$slct.sponsorship_obj.website_url} autocomplete="url" required />
|
||||
</label>
|
||||
</fieldset>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user