1👍
✅
Add it into the context (the dictionary where the form is):
return render(request, self.template_name, {'form': form, 'additional_item_1': additional_item_1_value})
Access it in the template using the key you used:
{{ additional_item_1 }}
Source:stackexchange.com