- Language: en
186 results for forms in version 4.2
-
Django 4.0 release notes
- … form rendering Forms , Formsets , and ErrorList are now rendered using the template engine to enhance …
-
Django 2.1 release notes
- … forms may raise errors when a user doesn’t have the change permission because the form …
-
Settings
- … FORM_RENDERER Default: ' django.forms.renderers.DjangoTemplates ' The class that renders forms and form widgets. It must implement …
-
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 …
-
How to create custom model fields
- … form field class can be specified via the form_class and choices_form_class arguments …
-
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 …