Lucas Coutinho
Results
2
issues of
Lucas Coutinho
Fix remove_path seeking the relative template directory, but if template_loader used in the application is not the default django this can lead to problems. Observation: Remove path always remove the...
def home(request): from forms import LoginForm formLogin = LoginForm() context = { 'formLogin' : formLogin } return TemplateResponse(request, 'views/file.jade', context) This code in my file.jade form(action="/auth", method="post") =formLogin.account.errors =formLogin.account Rendered...