Django表单不以HTML格式呈现

时间:2017-08-24 22:49:09

标签: html django forms

我有一个不呈现的表单,我无法弄清楚原因。唯一显示的是提交按钮。我创建的表单遵循了hereherehere所述的方法。

我查看了问题的解决方案(下面列出了其他内容),但他们没有帮助。

django-forms not rendering errors

django form not rendering in template. Input fields doesn't shows up

Django Form not rendering

Django Form not rendering - following documentation

html是app_core / index.html,它扩展了另一个 - landing_page / base.html

html:

{% extends 'landing_page/base.html' %}
{% load i18n %}
{% load staticfiles %}
{% load static %}
{% load bootstrap %}

{%block content %}
<div id="contactus" class="container-fluid">

<br>

<div class="container text-center">

    <div class="row">
        <div class="col-xs-12 col-sm-10 col-sm-offset-1 col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2 text-left">
            <center><h3>{% trans 'Contact Us' %}</h3>
            <p>{% trans 'We are at your disposal 365 days 24 hours a day. When you think of languages think of Milingual.
                            Languages are not studied, they are lived!' %}</p></center>
        </div>
    </div>
    <div class ="row">
        <div class="col-xs-12 col-sm-10 col-sm-offset-1 col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2 text-left">
        <center><h1>Contact Us</h1><center>

        <form id="contactus-form" action="{% url 'contact' %}"method="post" enctype="multipart/form-data">
            {% csrf_token %}
            {{ form.as_p }}

            <br/>
            <div class="form-actions">
              <button type="submit" class="btn btn-primary pull-center">Send</button>
            </div>
        </form>
        <div>

    </div>

</div>


{%endblock content %}

Views.py

from django.core.mail import BadHeaderError
from django.http import HttpResponse, HttpResponseRedirect
from django.shortcuts import render, redirect
from .forms import ContactForm
#ContactUs
def contact(request):
    if request.method == 'GET':
    form = ContactForm()
else:
    form = ContactForm(request.POST)
    if form.is_valid():
        whoareyou = form.cleaned_data['whoareyou']
        name = form.cleaned_data['name']
        phone_number = form.cleaned_data['phone_number']
        subject = form.cleaned_data['subject']
        from_email = form.cleaned_data['from_email']
        message = form.cleaned_data['message']
        try:
            send_email(subject, message, whoareyou, from_email, ['thiswaysouth@gmail.com'])
        except BadHeaderError:
            return HttpResponse('Invalid header found.')
        return redirect('success')
return render(request, "/index.html", {'form': form})


def success(request):
    return HttpResponse('Success! Thank you for your message.')

form.py

from django import forms


class ContactForm(forms.Form):
    WHOAREYOU_CHOICES = (
        ('Teacher', 'Teacher'),
        ('Student', 'Student'),
        ('Venue', 'Venue'),
        ('Business', 'Business'),
        ('Other', 'Other')
    )
    whoareyou = forms.ChoiceField(choices=WHOAREYOU_CHOICES, required=True)
    name = forms.CharField(required=True)
    phone_number = forms.CharField(required=True)
    from_email = forms.EmailField(required=True)
    subject = forms.CharField(required=True)
    message = forms.CharField(widget=forms.Textarea, required=True)

和urls.py

from django.conf.urls import url, include
from .views import *
from app_core import views

urlpatterns = [
    url(r'^$', IndexPage, name='index'),
    # setting session city
    url(r'^get-city-session$', GetCitySession, name='get-city-session'),
    url(r'^set-city-session$', SetCitySession, name='set-city-session'),
    url(r'^contact/$', views.contact, name='contact'),
    url(r'^success/$', views.success, name='success'),
]

2 个答案:

答案 0 :(得分:2)

您需要将代码放在块中,否则在扩展时它不知道放在哪里。在您的base.html中,您可以执行类似

的操作
{% block body %}
{% endblock %}

然后在index.html页面中,您需要包围您希望在基础中的该位置显示的所有内容。

{% block body %}
  ... Code goes here ...
{% endblock %}

答案 1 :(得分:0)

这是一个非常简单的解决方案,由于我天真的和新颖的编程能力,我没注意到。上面的代码过去是而且完全正确,但是我忽略了在form.py的ContactForm代码中添加关键的代码行。在表单的末尾,我只是简单地添加了以下几行,并完美呈现了它:

class ContactForm(forms.Form):
    WHOAREYOU_CHOICES ...

    class Meta:
        fields =('whoareyou','name','phone_number','from_email','subject','message')