diff --git a/frontend/src/lib/components/InscriptionPlace.svelte b/frontend/src/lib/components/InscriptionPlace.svelte
index 3688e0d39dc..d2c828a4708 100644
--- a/frontend/src/lib/components/InscriptionPlace.svelte
+++ b/frontend/src/lib/components/InscriptionPlace.svelte
@@ -1,12 +1,28 @@
- {#if inscription.place.offset}
{inscription.place.offset}{/if}
- {#if inscription.place.ref}
-
{inscription.place._}
- {:else}
- {inscription.place._}
- {/if}
+ {#each [mainPlace, otherPlace] as place}
+ {#if place}
+
{#if place.offset}{place.offset}{/if}
+ {#if place.ref}
+ {place._}
+ {:else}
+ {place._}
+ {/if}
+ ({place.type})
+ {/if}
+ {/each}
+
+