- Language: en
173 results for forms in version 3.2
-
Settings
- … FORM_RENDERER Default: ' django.forms.renderers.DjangoTemplates ' The class that renders form widgets. It must implement the low-level …
-
Django 1.5 release notes
- … forms The cleaned_data dictionary is now always present after form validation. When the form …
-
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> element: polls/templates/polls/detail.html < form action = " {% url 'polls:vote' question.id %} " method …
-
Django 1.9 release notes
- … form prefix can be specified inside a form class, not only when instantiating a form …