- Language: en
42 results for forms in version 1.8
-
GeoDjango Forms API
- … forms class MyGeoForm ( forms . Form ): point = forms . PointField ( widget = forms . OSMWidget ( attrs = { 'map_width …
-
PostgreSQL specific form fields and widgets
- … forms >>> class NumberListForm ( forms . Form ): ... numbers = SimpleArrayField ( forms . IntegerField ()) >>> form …
-
Forms
- … forms as HTML Binding uploaded files to a form Subclassing forms Prefixes for forms Form …
-
The Forms API
- … forms >>> class CommentForm ( forms . Form ): ... name = forms . CharField ( initial = 'class' ) ... url = forms …
-
Form and field validation
- … forms . Form ): subject = forms . CharField ( max_length = 100 ) message = forms . CharField () sender = forms . EmailField () recipients …
-
Form fields
- … forms . Form ): ... age = forms . IntegerField () ... nationality = forms . CharField () ... captcha_answer = forms . IntegerField ( label = '2 + 2' , label …
-
Model Form Functions
- … Form Functions Model Form API reference. For introductory material about model forms, see the Creating …
-
Cross Site Request Forgery protection
- … form, use the csrf_token tag inside the <form> element if the form …
-
Unicode data
- … Form submission HTML form submission is a tricky area. There’s no guarantee that the submission …
-
The contenttypes framework
- … forms The django.contrib.contenttypes.forms module provides: BaseGenericInlineFormSet A formset factory, generic_inlineformset_factory() , for use with …