- Language: en
150 results for forms in version 2.0
-
Settings
- … FORM_RENDERER New in Django 1.11. Default: ' django.forms.renderers.DjangoTemplates ' The class that renders form widgets. It must …
-
Using the Django authentication system
- … form = PasswordChangeForm ( user = request . user , data = request . POST ) if form . is_valid (): form . save () update …
-
Introduction to class-based views
- … form' : form }) def post ( self , request , * args , ** kwargs ): form = self . form_class ( request . POST …
-
Customizing authentication in Django
- … forms . CharField ( label = 'Password' , widget = forms . PasswordInput ) password2 = forms . CharField ( label = 'Password …
-
Writing custom model fields
- … form field class can be specified via the form_class and choices_form_class arguments …
-
Cross Site Request Forgery protection
- … form, use the csrf_token tag inside the <form> element if the form …
-
Django 1.10 release notes
- … Forms Form and widget Media is now served using django.contrib.staticfiles if installed. The <input …
-
Writing your first Django app, part 4
- … form processing and cutting down our code. Write a simple form Let’s update our poll …
-
Django 1.11 release notes
- … form widget rendering is now done using the template system rather than in Python. See The form …
-
Django 1.9 release notes
- … form prefix can be specified inside a form class, not only when instantiating a form …