- Language: en
18 results for full text search in version 3.2
-
Model field reference
- … text field. The default form widget for this field is a Textarea . If you specify a max_length attribute, it will be reflected in the Textarea widget of the auto-generated form field. However …
-
django-admin and manage.py
- … search path . If this isn’t provided, django-admin will use the PYTHONPATH environment variable. This option is unnecessary in manage.py , because it takes care of setting the Python path for you. Example usage: django …
-
QuerySet API reference
- … search criteria. Example: Entry . objects . extra ( where = [ "foo='a' OR bar = 'a'" , "baz = 'a'" ]) …translates (roughly) into the following SQL: SELECT * FROM blog_entry WHERE …
-
Custom template tags and filters
- … searched by the template loader, we’d register the tag like this: # Here, register is a django.template.Library instance, as before @register . inclusion_tag ( 'results.html' ) def show_results ( poll ): ... Alternatively it is possible …
-
Design philosophies
- … full advantage of Python’s dynamic capabilities, such as introspection. Quick development The point of a Web framework in the 21st century is to make the tedious aspects of Web development fast. Django should allow …
-
Django 2.0 release notes
- … search widget for ForeignKey and ManyToManyField . django.contrib.auth The default iteration count for the PBKDF2 password hasher is increased from 36,000 to 100,000. django.contrib.gis Added MySQL support for the AsGeoJSON function, GeoHash function, IsValid …
-
Django 3.2 release notes
- … full details. Customizing type of auto-created primary keys When defining a model, if no field in a model is defined with primary_key=True an implicit primary key is added. The type of this …
-
Writing your first Django app, part 1
- … Full docs for the development server can be found in the runserver reference. Automatic reloading of runserver The development server automatically reloads Python code for each request as needed. You don’t need to restart …