Training admin — Base

Training admin

Videos Manage training videos in the Media collection. {#if form?.error}

{form.error}

{/if} {#if videos.length === 0}

No videos found.

{:else}
{#each videos as video (video.id)}

{video.title}

{formatDate(video.created)}
{#if video.description}

{video.description}

{/if} {#if video.videoUrl}

{video.videoUrl}

{/if}
{/each}
{/if}