Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(speech): toggle talks and tutorials pages #550

Merged
merged 5 commits into from
Jul 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions i18n/conference/speeches.i18n.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ export default genI18nMessages({
title: 'Talks',
intro:
'The two conference days are packed with talks about Python by speakers' +
' from Taiwan and around the world. The talks will be either 15-, 30-,' +
' or 45-minute long. Three tracks of talks will be delivered simultaneously,' +
' all with different topics and difficulties. We suggest you to make a schedule' +
' beforehand, and choose what you want ot listen based on your interests.' +
' Many people take notes on the program schedule before the meeting so they don’t ' +
'run to wrong places.',
' from Taiwan and around the world. The talks will be either 15, 30,' +
' or 45 minutes long. Three tracks of talks will be delivered simultaneously,' +
' all with different topics and difficulties. We suggest you make a schedule' +
' beforehand, and choose what you want to listen based on your interests.' +
' Many people take notes on the program schedule before the meeting so they don’t' +
' run to the wrong places.',
categoryFilter: 'Category',
},
tutorials: {
Expand Down
4 changes: 2 additions & 2 deletions routes.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"/api/sponsors/jobs/": "/jobs",
"/api/events/keynotes/": "/keynotes",
"/api/events/speeches/\\?event_types=:event_type": "/speeches/?event_type=:event_type",
"/api/events/speeches/category/:category": "/speeches/?category=:category",
"/api/events/speeches/:event_type/:id": "/speeches/?event_type=:event_type&id=:id&singular=1",
"/api/events/schedule": "/schedules",
"/api/events/speeches/category/:category": "/speeches/?category=:category"
"/api/events/schedule": "/schedules"
}
2 changes: 1 addition & 1 deletion store/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const state = () => ({
showIndexSecondaryBtn: true,
aboutHideItems: ['apacCommunity'], // ['pycontw', 'apacCommunity', 'history', 'community', 'codeOfConduct']
eventsHideItems: ['sprints', 'openSpaces'], // ['sprints', 'openSpaces', 'jobs']
conferenceHideItems: ['talks', 'tutorials', 'panelDiscussion'], // ['keynotes', 'talks', 'tutorials', 'panelDiscussion']
conferenceHideItems: ['panelDiscussion'], // ['keynotes', 'talks', 'tutorials', 'panelDiscussion']
registrationHideItems: [], // ['tickets', 'financialAid']
venueHideItems: [], // ['venueInfo', 'accommodation']
},
Expand Down
Loading