add second year of uni
This commit is contained in:
parent
7ae7cafe97
commit
2f539eff2a
1 changed files with 55 additions and 24 deletions
|
@ -1,31 +1,62 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
cv: Boolean
|
cv: Boolean,
|
||||||
}
|
},
|
||||||
}
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="mt-10 container mx-auto bg bg-white-2 dark:bg-dark-black-1 rounded-2xl p-12 h-1/2" :class="cv ? '' : 'hidden'">
|
<div
|
||||||
|
class="mt-10 container mx-auto bg bg-white-2 dark:bg-dark-black-1 rounded-2xl p-12 h-1/2"
|
||||||
|
:class="cv ? '' : 'hidden'"
|
||||||
|
>
|
||||||
<div class="border rounded-lg dark:border-white-2">
|
<div class="border rounded-lg dark:border-white-2">
|
||||||
<table class="table-auto w-full border-spacing-1 border-separate">
|
<table class="border-collapse table-auto w-full">
|
||||||
<thead class="text-dark-black-3 dark:text-white-2">
|
<thead class="text-dark-black-3 dark:text-white-2">
|
||||||
<tr class="border-black-1 dark:border-white-3">
|
<tr class="border-black-1 dark:border-white-3">
|
||||||
<th>Location</th>
|
<th
|
||||||
<th>Description</th>
|
class="border border-dark-bg dark:border-white-3 border-t-0 border-l-0 border-r-0 border-b-2 pt-3 pb-3"
|
||||||
<th>Year</th>
|
>
|
||||||
|
Location
|
||||||
|
</th>
|
||||||
|
<th
|
||||||
|
class="border border-dark-bg dark:border-white-3 border-t-0 border-l-0 border-r-0 border-b-2 pt-3 pb-3"
|
||||||
|
>
|
||||||
|
Description
|
||||||
|
</th>
|
||||||
|
<th
|
||||||
|
class="border border-dark-bg dark:border-white-3 border-t-0 border-l-0 border-r-0 border-b-2 pt-3 pb-3"
|
||||||
|
>
|
||||||
|
Year
|
||||||
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody class="text-dark-bg dark:text-white-1">
|
<tbody class="text-dark-bg dark:text-white-1">
|
||||||
|
<tr>
|
||||||
|
<th
|
||||||
|
class="border border-dark-bg dark:border-white-3 border-t-0 border-l-0 border-r-0 border-b-2 pt-3 pb-3"
|
||||||
|
>
|
||||||
|
BUT Informatique S1-2 Belfort
|
||||||
|
</th>
|
||||||
|
<th
|
||||||
|
class="border border-dark-bg dark:border-white-3 border-t-0 border-l-0 border-r-0 border-b-2 pt-3 pb-3"
|
||||||
|
>
|
||||||
|
First year of computer science
|
||||||
|
</th>
|
||||||
|
<th
|
||||||
|
class="border border-dark-bg dark:border-white-3 border-t-0 border-l-0 border-r-0 border-b-2 pt-3 pb-3"
|
||||||
|
>
|
||||||
|
2022-2023
|
||||||
|
</th>
|
||||||
|
</tr>
|
||||||
<tr class="">
|
<tr class="">
|
||||||
<th>BUT Informatique S1-2 Belfort</th>
|
<th class="pt-3 pb-3">BUT Informatique S3-4 Strasbourg</th>
|
||||||
<th>First year of computer science</th>
|
<th class="pt-3 pb-3">Second year of computer science</th>
|
||||||
<th>2022-2023</th>
|
<th class="pt-3 pb-3">2023-2024</th>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in a new issue