0

我想知道如何更改默认 UserRegistrationForm 的显示。这是我的views.py 文件。

from django.http import *
from django.shortcuts import render_to_response
from django.http import HttpResponseRedirect
from django.contrib import auth
from django.core.context_processors import csrf
from django.contrib.auth.forms import UserCreationForm
from forms import MyRegistrationForm


def register_user(request):
    if request.method == 'POST':
        form = MyRegistrationForm(request.POST)
        if form.is_valid():
            form.save()
            return HttpResponseRedirect('/accounts/register_success')
    args = {}
    args.update(csrf(request))

    args['form'] = MyRegistrationForm()
    return render_to_response('register.html', args)

def register_success(request):
    return render_to_response('register_success.html')

这是 register_user 模板中显示的内容。

{% extends "application/base.html" %}

{% block content %}
    <h2> Register </h2>
    <form action="/accounts/register/" method="post">{% csrf_token %}
        {{form}}
        <input type="submit" value="Register" />
    </form>
{% endblock %}

我想独立访问 {{form}} 的每个字段,以便轻松访问视图。怎么做?

这也是我的 forms.py 文件

from django import forms
from django.contrib.auth.models import User
from django.contrib.auth.forms import UserCreationForm


class MyRegistrationForm(UserCreationForm):
    email = forms.EmailField(required=True)

    class Meta:
        model = User
        fields = ('username', 'email', 'password1', 'password2')

    def save(self,commit=True):
        user=super(MyRegistrationForm, self).save(commit=False)
        user.email=self.cleaned_data['email']
        if commit:
            user.save()
        return user

请帮助我,我是 django 的新手??

4

2 回答 2

3

您可以执行以下操作:

  1. 创建appname/templates/registration文件夹
  2. 在此文件夹中,放置您想要拥有的所有 html 模板(例如 login.html、password_change_form.html、...)。查看 - 文件夹中的原始表单以了解原始模板中的功能可能是个好主意django/contrib/admin/templates/registration (or ../admin)
  3. 根据您的需要自定义模板。如果您想将相同的 css 应用到每个页面,我建议您编写自己的 base.html 并使用{% extends "base.html" %}.
  4. 将视图添加到您的urls.py,例如:

    url(r'^accounts/login/$', 'django.contrib.auth.views.login'),
    url(r'^accounts/logout/$', 'django.contrib.auth.views.logout_then_login'),
    url(r'^accounts/password_change_done/$', 'django.contrib.auth.views.password_change_done', name="password_change_done"),
    url(r'^accounts/password_change/$', 'django.contrib.auth.views.password_change', name='password_change'),
    

无需在 forms.py 或 views.py 中定义任何内容。

于 2013-10-07T13:26:39.560 回答
1

所以制作自己的表格:

Django-x.x/django/contrib/admin/templates复制base.html, base_site.html and login.htmlproject_name/templates/admin

然后根据需要更改文件。

于 2013-10-07T13:02:17.400 回答