Posts by Amanda Sacchi • 1 point
2 posts
-
0
votes3
answers805
viewsA: I’m having a problem with Django-views, he’s not saving my form
I managed to solve my problem as follows: VIEWS: def cadastro(request): if request.method == "POST": form = CandidatoForm(request.POST) if form.is_valid(): candidado = form.save() msg = "Cadastro…
djangoanswered Amanda Sacchi 1 -
0
votes3
answers805
viewsQ: I’m having a problem with Django-views, he’s not saving my form
This is my views: from django.shortcuts import render from meusite.forms import CandidatoForm from meusite.models import Candidato def index(request): return render(request, 'index.html')…
djangoasked Amanda Sacchi 1