[Fixed]-Render additional information with form in formview django

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 }}

Leave a comment