Two views in a Django page
问题 I'm having problems displaying the input box of my page. On this same page I would like to have two views, one that accesses and retrieves data and the other a form. As it's an event sign-up page, the first view show the details of a specific event and the second is a view to remove a specific user from the event itself. My views.py def ShowSpecificEvent(request, eventslug): if request.method == 'POST': form = RemovalForm(request.POST) if form.is_valid(): event = Event.objects.get(slug