Hello, I hope I am in the right place with this question.
I was wondering what would be the best/easiest to maintain way of setting a default value for the title in the abstract submission form. It would be nice if it could be dynamic but a static value would also be fine.
For our purposes, having to set a title makes no sense, so we’ve currently just hidden the field in the form by changing the title field to a HiddenField in the ".../modules/events/abstracts/forms.py"
file.
class AbstractForm(IndicoForm):
title = HiddenField('Application')
The only issue is that the title field is not instantiated with the default value 'Application'
, so it is just blank which is kind of a problem ^^
Thank you in advance and kind regards
Michi