Is there a way to render a html page without view model?
        Posted  
        
            by iHeartDucks
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by iHeartDucks
        
        
        
        Published on 2010-05-09T22:34:03Z
        Indexed on 
            2010/05/09
            22:38 UTC
        
        
        Read the original article
        Hit count: 278
        
django
I there a way to render a html page without having a vide model in django? If a page is going to display static html?
Also, can I redirect to a html page instead of a url. For example, instead of doing this
return HttpResponseRedirect('form/success/')
can I do this
return HttpResponseRedirect('success.html')
© Stack Overflow or respective owner