add location to myschedule info

This commit is contained in:
Dobromir Popov
2024-05-24 14:38:57 +03:00
parent 54a398b4c4
commit 0f6e094f24

View File

@ -76,6 +76,12 @@ export default function MySchedulePage({ assignments }) {
</div>
<div className="border-t border-gray-200">
<dl>
<div className="bg-gray-50 px-4 py-5 grid grid-cols-1 sm:grid-cols-3 gap-4 xs:gap-1 px-6 xs:py-1">
<dt className="text-sm font-medium text-gray-500">Място</dt>
<dd className="mt-1 text-sm text-gray-900 sm:mt-0 sm:col-span-2">
{assignment.shift.cartEvent.location.name}
</dd>
</div>
<div className="bg-gray-50 px-4 py-5 grid grid-cols-1 sm:grid-cols-3 gap-4 xs:gap-1 px-6 xs:py-1">
<dt className="text-sm font-medium text-gray-500">Час</dt>
<dd className="mt-1 text-sm text-gray-900 sm:mt-0 sm:col-span-2">
@ -217,6 +223,17 @@ export const getServerSideProps = async (context) => {
}
}
}
},
cartEvent: {
select: {
id: true,
dayofweek: true,
location: {
select: {
name: true,
}
}
}
}
},
},