Merge branch 'feat/directions' into 'master'

feat: Added feature to allow users to give directions for study spaces. These...

See merge request gk1623/drp-48!24

Co-authored-by: TadiosT <tadios.temesgen@gmail.com>
This commit is contained in:
Caspar Jojo Asaam
2025-06-13 12:48:49 +00:00
7 changed files with 20 additions and 0 deletions

View File

@@ -171,6 +171,11 @@
{/each}
<hr />
<div class="subtitle">Directions:</div>
<p class="addrContainer">
{space.directions}
</p>
<div class="subtitle">Where it is:</div>
<p class="addrContainer">
{#if place.name}

View File

@@ -21,6 +21,7 @@ export const load: PageServerLoad = async ({ params, locals: { supabase } }) =>
return {
space: {
description: "",
directions: "",
building_location: undefined,
location: "",
tags: [],

View File

@@ -461,6 +461,14 @@
rows={2}
/>
<label for="directions">Give directions:</label>
<Textarea
name="directions"
bind:value={studySpaceData.directions}
placeholder="Turn left once you enter Huxley and walk straight."
rows={2}
/>
<label for="building-location">Add the building location:</label>
<Text
name="building-location"