python - Django form submits (I think) but does not send to database -
python - Django form submits (I think) but does not send to database -
below code think should working version of email submit form within bootstrap3 modal. upon form submit taken barebones give thanks page, not think email address beingness sent database because can't see in django admin.
also, reason think broken form validation not seem working. can submit looks nil email address , still beingness sent give thanks page.
do have issues in of files, or isolated specific area?
views.py
from django.shortcuts import render temp.models import email forms import emailform def index(request): if request.post: form = emailform(request.post) if form.is_valid(): email = emailform() email.save() homecoming render(request, 'temp/thanks.html') homecoming render(request, 'temp/index.html') def thanks(request): homecoming render(request, 'temp/thanks.html')
forms.py
from django import forms class emailform(forms.form): email = forms.charfield(max_length=100)
models.py
django.db import models class email(models.model): email = models.charfield(max_length=200) def __unicode__(self): # python 3: def __str__(self): homecoming self.email
index.html
<!-- modal --> <div class="modal fade" id="mymodal" tabindex="-1" role="dialog" aria-labelledby="mymodallabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> <h4 class="modal-title" id="mymodallabel">sign beta</h4> </div> <div class="modal-body"> <!-- async form send , replace modals content response --> <form class="form-horizontal well" data-async data-target="#mymodal" action="thanks/" method="post"> {% csrf_token %} <fieldset> <div>your email address: <span> <input type="text" id="modalinput"></input> </span> </div> </fieldset> </div> <div class="modal-footer"> <button type="submit" class="btn btn-default" data-dismiss="modal">close</button> <button type="submit" class="btn btn-primary">submit</button> </form> </div> </div> </div> </div> <!-- end modal -->
update view to
def index(request): if request.post: form = emailform(request.post) if form.is_valid(): email = form.save() #use form save in db homecoming render(request, 'temp/thanks.html') homecoming render(request, 'temp/index.html')
also, utilize models.emailfield()
email
instead of charfield()
. emailfield
django validate info appropriately. create form modelform
django saves info appropriate model/table.
class emailform(forms.modelform): class meta: model = email
python django forms
Comments
Post a Comment