Skip to content

Commit

Permalink
fix(su): update for 2025 season (#2275)
Browse files Browse the repository at this point in the history
Co-authored-by: Rik Smale <[email protected]>
  • Loading branch information
WikiRik and Rik Smale authored Dec 30, 2024
1 parent 9f818b4 commit 5a25f10
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
5 changes: 3 additions & 2 deletions src/views/summeruniversity/Edit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@
<option value="2022">2022</option>
<option value="2023">2023</option>
<option value="2024">2024</option>
<option value="2025">2025</option>
</select>
</div>
<p class="help is-danger" v-if="errors.season">{{ errors.season.join(', ') }}</p>
Expand Down Expand Up @@ -123,7 +124,7 @@
</div>

<!-- TODO: If larger than max, show warning that higher fee can only be set by SUCT -->
<!-- TODO: Have two inputs, one without a maximum for people with the proper permission and one with the maximum based on duration (max 19 euros per night) -->
<!-- TODO: Have two inputs, one without a maximum for people with the proper permission and one with the maximum based on duration (max 19.23 euros per night) -->
<div class="field" v-if="!event.status || event.status === 'first draft' || can.editFee">
<label class="label">Fee <span class="has-text-danger">*</span></label>
<div class="control">
Expand Down Expand Up @@ -746,7 +747,7 @@
- We are able to provide meals 2x per day, also to people with specific dietary needs.<br />
- We are able to provide accommodation for all the nights of the event for every participant.<br />
- We are able to provide 2 hours of tuition per night on average.<br />
- We are able to provide all the activities with the participation fee of 19 EUR per night (excluding the optional fee and its activities).</p>
- We are able to provide all the activities with the participation fee of 19.23 EUR per night (excluding the optional fee and its activities).</p>
</div>
</div>

Expand Down
3 changes: 2 additions & 1 deletion src/views/summeruniversity/EditSecond.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@
<option value="2021">2021</option>
<option value="2022">2022</option>
<option value="2023">2023</option>
<option selected value="2024">2024</option>
<option value="2024">2024</option>
<option selected value="2025">2025</option>
</select>
</div>
<p class="help is-danger" v-if="errors.season">{{ errors.season.join(', ') }}</p>
Expand Down
5 changes: 3 additions & 2 deletions src/views/summeruniversity/List.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
<option value="2021">2021</option>
<option value="2022">2022</option>
<option value="2023">2023</option>
<option selected value="2024">2024</option>
<option value="2024">2024</option>
<option selected value="2025">2025</option>
</select>
</div>
</div>
Expand Down Expand Up @@ -166,7 +167,7 @@ export default {
eventTypes,
eventTypesNames: constants.SUMMERUNIVERSITY_TYPES_NAMES,
applicationStatuses,
season: 2024,
season: 2025,
isLoading: {
events: false,
permissions: false
Expand Down

0 comments on commit 5a25f10

Please sign in to comment.