Lots of changes. Things are working better. Files are now showing for the session and presenter. Next is location and event.

This commit is contained in:
Scott Idem
2024-08-09 17:50:54 -04:00
parent 30e6384772
commit 9a1995dd9f
25 changed files with 683 additions and 176 deletions

View File

@@ -25,6 +25,7 @@ import { events_func } from '$lib/ae_events_functions';
import Form_agree from './form_agree.svelte';
import Comp_event_presenter_obj_li from './ae_comp__event_presenter_obj_li.svelte';
import Element_manage_event_file_li from '$lib/element_manage_event_file_li.svelte';
import AeCompEventFileObjTbl from './ae_comp__event_file_obj_tbl.svelte';
// Exports
export let event_session_id: string;
@@ -252,7 +253,19 @@ $: if ($lq__event_session_obj) {
</Element_ae_crud>
</li>
<li>
<strong class="text-sm">Location/Room:</strong> {@html $lq__event_session_obj.event_location_name ? $lq__event_session_obj.event_location_name : ae_snip.html__not_set}
<strong class="text-sm">Location/Room:</strong>
{#if $ae_loc.trusted_access}
<a
href="/events_pres_mgmt/launcher/{$lq__event_session_obj.event_location_id_random}"
class="text-blue-500 hover:text-blue-800 hover:underline"
title="Launcher: {$lq__event_session_obj?.event_location_name} {$lq__event_session_obj?.event_location_id_random}"
>
<span class="fas fa-paper-plane"></span>
{@html $lq__event_session_obj.event_location_name ? $lq__event_session_obj.event_location_name : ae_snip.html__not_set}
</a>
{:else}
{@html $lq__event_session_obj.event_location_name ? $lq__event_session_obj.event_location_name : ae_snip.html__not_set}
{/if}
{#if $ae_loc.trusted_access && $ae_loc.edit_mode}
<Element_ae_crud