POC sign is mostly working now
This commit is contained in:
@@ -201,8 +201,8 @@ $: if ($events_trigger == 'load__event_session_obj_li' && $events_slct.event_id)
|
||||
|
||||
|
||||
{#if $events_slct.event_id && $event_obj}
|
||||
<h2 class="h3">{$event_obj.name}</h2>
|
||||
<h3 class="h4">Presentation Management Hub</h3>
|
||||
<h2 class="h3 text-center">{$event_obj.name}</h2>
|
||||
<h3 class="h4 text-center">Presentation Management Hub</h3>
|
||||
{/if}
|
||||
|
||||
<div class="variant-ghost-success my-2 p-2 rounded-md flex flex-row items-center">
|
||||
@@ -220,7 +220,7 @@ $: if ($events_trigger == 'load__event_session_obj_li' && $events_slct.event_id)
|
||||
placeholder="Search for a session"
|
||||
id="session_fulltext_search_qry_str"
|
||||
bind:value={$events_sess.pres_mgmt.fulltext_search_qry_str}
|
||||
class="input text-1xl hover:text-2xl font-bold font-mono w-96 transition-all"
|
||||
class="input text-1xl hover:text-2xl font-bold font-mono w-80 transition-all"
|
||||
on:keyup={() => {
|
||||
if ($events_sess.pres_mgmt.fulltext_search_qry_str.length >= 3) {
|
||||
$events_trigger = 'load__event_session_obj_li';
|
||||
@@ -233,7 +233,7 @@ $: if ($events_trigger == 'load__event_session_obj_li' && $events_slct.event_id)
|
||||
|
||||
<button
|
||||
type="submit"
|
||||
class="btn btn-lg variant-ghost-success hover:variant-glass-success text-2xl font-bold w-48 transition-all"
|
||||
class="btn btn-lg variant-ghost-success hover:variant-filled-success text-2xl font-bold w-48 transition-all"
|
||||
on:click={() => {
|
||||
|
||||
}}
|
||||
@@ -281,14 +281,20 @@ $: if ($events_trigger == 'load__event_session_obj_li' && $events_slct.event_id)
|
||||
<th>Date</th>
|
||||
<th>Start/End</th>
|
||||
<th>Location</th>
|
||||
<th>Actions</th>
|
||||
<!-- <th>Actions</th> -->
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{#each $events_slct.session_obj_li as session_obj}
|
||||
<tr>
|
||||
<td>
|
||||
<strong>{session_obj.name}</strong>
|
||||
<a
|
||||
href="/events_pres_mgmt/session/{session_obj.event_session_id_random}"
|
||||
class="btn btn-md variant-ghost-secondary hover:variant-filled-secondary"
|
||||
>
|
||||
<span class="fas fa-eye mx-1"></span>
|
||||
<strong>{session_obj.name}</strong>
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<span style="break-inside: avoid;">
|
||||
@@ -309,7 +315,7 @@ $: if ($events_trigger == 'load__event_session_obj_li' && $events_slct.event_id)
|
||||
{/if}
|
||||
</td>
|
||||
<td>{session_obj.event_location_name ?? '-- not set --'}</td>
|
||||
<td>
|
||||
<!-- <td>
|
||||
<a
|
||||
href="/events_pres_mgmt/session/{session_obj.event_session_id_random}"
|
||||
class="btn btn-md variant-ghost-secondary hover:variant-glass-secondary"
|
||||
@@ -317,7 +323,7 @@ $: if ($events_trigger == 'load__event_session_obj_li' && $events_slct.event_id)
|
||||
<span class="fas fa-eye mx-1"></span>
|
||||
View
|
||||
</a>
|
||||
</td>
|
||||
</td> -->
|
||||
</tr>
|
||||
{/each}
|
||||
</tbody>
|
||||
|
||||
Reference in New Issue
Block a user