[Fixed]-Django Issue Template Does Not Exist at /deals/

1👍

Your mistake was the arguments to the render function, it waits parameters like

render(request, 'name_of_template.html', context_dict)

Also, check your form variable it must be inside of the context dictionary, try adding it this way before pass it to render:

context['form'] = form

These things should work now.

Leave a comment