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

2022 cfp #1053

Merged
merged 25 commits into from
Feb 28, 2022
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
ed84718
feat(core/models.py): Add new fields in EventInfo
setmao Feb 20, 2022
bdf6695
feat(proposals/forms): Add new fields in proposal froms
setmao Feb 20, 2022
d0a5e24
feat(django.po): Update i18n
setmao Feb 20, 2022
05b3611
feat(all): Add 2022 config
setmao Feb 26, 2022
37e1313
style(css): Update style
setmao Feb 27, 2022
51aa33b
fix(proposals.py): Fix typo
setmao Feb 27, 2022
bfe7a52
feat(proposals): Remove remoting_policy
setmao Feb 27, 2022
f42c6a4
feat(core/models.py): Add talk_language
setmao Feb 27, 2022
a8c02b7
refactor(proposals/forms.py): Update text
setmao Feb 27, 2022
a23e2db
feat(migrations): Add migrations
setmao Feb 27, 2022
17ca233
feat(django.po): Update po
setmao Feb 27, 2022
a7d46ee
refactor(django.po): Update po
setmao Feb 27, 2022
02e0fcf
build(docker-compose.yml): Update container name to 2022
setmao Feb 27, 2022
4775794
build(docker-compose.yml): Update to 2022
setmao Feb 27, 2022
5e67b97
style(_proposals.scss): Fix background image
setmao Feb 27, 2022
9985ba9
style(nav_base.html): Fix nav bar
setmao Feb 27, 2022
52c33f5
feat(forms/proposals.py): Let talk language is not required
setmao Feb 28, 2022
7bcdc2d
style(_proposals.scss): Fix css
setmao Feb 28, 2022
009e816
feat(proposals/): Refine pre_recorded_policy
setmao Feb 28, 2022
108ea47
feat(django.po): Update po
setmao Feb 28, 2022
51bd4ad
fix(django.po): Update po
setmao Feb 28, 2022
4fe67e7
Merge branch 'master' of github.com:pycontw/pycon.tw into 2022_cfp
setmao Feb 28, 2022
d75d78a
fix(migrations/): Fix migrations
setmao Feb 28, 2022
9b0d299
test(tests/): Fix test
setmao Feb 28, 2022
e0fd6a1
test(tests/): Fix test
setmao Feb 28, 2022
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
Prev Previous commit
Next Next commit
fix(proposals.py): Fix typo
  • Loading branch information
setmao committed Feb 27, 2022
commit 51aa33bd38d0e1c7d44e02e5b052a4ce0c75e792
4 changes: 2 additions & 2 deletions src/proposals/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ def unfinished_fields_count(self):
class TalkProposal(AbstractProposal):

duration = models.CharField(
verbose_name=_('duration'),
verbose_name=_('Duration'),
max_length=6,
)

Expand Down Expand Up @@ -314,7 +314,7 @@ class TutorialProposal(AbstractProposal):
)

duration = models.CharField(
verbose_name=_('duration'),
verbose_name=_('Duration'),
max_length=7,
choices=DURATION_CHOICES,
default='1.5hr',
Expand Down