File size: 635 Bytes
7069a57
 
 
 
 
 
 
8a49743
7069a57
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<script lang="ts">
	import Picture from '$lib/components/Picture.svelte';
	import type { PageData } from './$types';

	export let data: PageData;
</script>

<h1 class="text-sunray">Liste des photos sans produit</h1>

<a href="/admin/photos/nouveau" class="my-4 block link">Nouvelle photo</a>

<div class="flex flex-row flex-wrap gap-6 mt-6">
	{#each data.photos as photo}
		<div class="flex flex-col text-center">
			<a href="/admin/photos/{photo._id}" class="flex flex-col items-center">
				<Picture picture={photo} class="h-36 block" style="object-fit: scale-down;" />
				<span>{photo.name}</span>
			</a>
		</div>
	{/each}
</div>