how initial is passed to the Form constructor django code example
Example 1: django set default value for model not form
form = JournalForm(initial={'tank': 123})
Example 2: django ModelChoiceField value not id
articles = ModelChoiceField(queryset=Articles.objects.all(),
to_field_name='slug')