class BulkAddForm(forms.Form): """ New line separated list of job names. Gives user a list of new Job HelpText to create, previously associated HelpText to re-associate, and any lines that were not found as job names. """ env = forms.ModelChoiceField( queryset=models.AutosysEnvFilter.objects.all(), empty_label="--select env--", required=False, widget=forms.Select(attrs={'style': 'width:15%'})) .... def find_and_sort_jobs(self: str): """ Take the text from inputs and organize it to send to view. """ env = self.cleaned_data['env'] **snip** [1:04 PM] Miu, Hailee M # Act kwargs = {'job_type': 'autosys', 'pk': a_ht.autosys_id, 'help_text_id': a_ht.help_text_id} url = reverse('brs_help:bulk-add', kwargs=kwargs) data = {'autosys_jobs': autosys_string_input, 'env': prd_env, 'ca7_jobs': ''} **snip** I get an error: AttributeError: 'dict' object has no attribute 'cleaned_data'