You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 29, 2022. It is now read-only.
Ask potential speakers about their time slot availability (#1379)
* initial
* renamed to something more sensible
* Add a required checkbox to the CfP proposal submission page. The checkbox content is not stored in the database, but submission will fail unless checked.
* added test to verify that speakers do have to agree to the speaker release agreement
* initial
* renamed to something more sensible
* Added a template simple_tag to list a user tickets for the current conference. Uses functionality already implemented.
* Added documentation
* Added a template simple_tag to list a user tickets for the current conference. Uses functionality already implemented.
* Upgraded jquery-flot to v0.8.3 for compatibility with django admin jquery version - v3.5.1
* Added timeslot availability selector in talk proposal form and admin. The admin might need some more work to make it nice
* typo
* implemented tests and updated talk factory for timezone availability
Copy file name to clipboardExpand all lines: conference/forms/forms.py
+19Lines changed: 19 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -157,6 +157,25 @@ class TalkBaseForm(forms.Form):
157
157
help_text=_('<p>Please add anything you may find useful for the review of your session proposal, e.g. references of where you have held talks, blogs, YouTube channels, books you have written, etc. This information will only be shown for talk review purposes.</p>'),
158
158
widget=forms.Textarea,
159
159
required=False)
160
+
161
+
# For online conference we want to know availability in the defined
162
+
# timeslots. Of course no timeslot defined, no need to ask :-)
0 commit comments