forked from mattmakai/fullstackpython.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdjango.html
More file actions
420 lines (420 loc) · 26.2 KB
/
django.html
File metadata and controls
420 lines (420 loc) · 26.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
<div class="row">
<div class="c12">
<h3 class="toc-examples"><a href="/django.html">Django</a>:
<a href="/django-extensions-plug-ins-related-libraries.html">Extensions, Plug-ins and Related Libraries</a> &
<a href="/django-code-examples.html">Example Projects and Code</a>
</h3>
<h4 class="bp"><a href="/django-apps-config-appconfig-examples.html">django.apps.config AppConfig</a></h4>
<h4 class="bp">django.conf
<a href="/django-conf-settings-examples.html">settings</a>,
<a href="/django-conf-urls-url-examples.html">urls.url</a>
</h4>
<h4 class="bp"><a href="/django-contrib-admin-examples.html">django.contrib.admin</a>
<a href="/django-contrib-admin-filters-simplelistfilter-examples.html">filters.SimpleListFilter</a>,
</h4>
<h4 class="bp"><a href="/django-contrib-admin-helpers-examples.html">django.contrib.admin.helpers</a>
<a href="/django-contrib-admin-helpers-actionform-examples.html">ActionForm</a>,
<a href="/django-contrib-admin-helpers-adminform-examples.html">AdminForm</a>
</h4>
<h4 class="bp">django.contrib.admin.options
<a href="/django-contrib-admin-options-is-popup-var-examples.html">IS_POPUP_VAR</a>,
<a href="/django-contrib-admin-options-incorrectlookupparameters-examples.html">IncorrectLookupParameters</a>,
<a href="/django-contrib-admin-options-modeladmin-examples.html">ModelAdmin</a>,
<a href="/django-contrib-admin-options-csrf-protect-m-examples.html">csrf_protect_m</a>
</h4>
<h4 class="bp">django.contrib.admin.sites
<a href="/django-contrib-admin-sites-notregistered-examples.html">NotRegistered</a>,
<a href="/django-contrib-admin-sites-register-examples.html">register</a>,
<a href="/django-contrib-admin-sites-site-examples.html">site</a>
</h4>
<h4 class="bp">django.contrib.auth
<a href="/django-contrib-auth-get-user-model-examples.html">get_user_model</a>,
<a href="/django-contrib-auth-decorators-login-required-examples.html">decorators login_required</a>,
<a href="/django-contrib-auth-hashers-make-password-examples.html">hashers make_password</a>
</h4>
<h4 class="bp">django.contrib.staticfiles
<a href="/django-contrib-staticfiles-finders-examples.html">finders</a>,
<a href="/django-contrib-staticfiles-finders-basefinder-examples.html">.finders BaseFinder</a>,
<a href="/django-contrib-staticfiles-finders-basestoragefinder-examples.html">.finders BaseStorageFinder</a>,
<a href="/django-contrib-staticfiles-finders-find-examples.html">.finders find</a>,
<a href="/django-contrib-staticfiles-finders-get-finders-examples.html">.finders get_finders</a>
<a href="/django-contrib-staticfiles-handlers-staticfileshandler-examples.html">.handlers StaticFilesHandler</a>
<a href="/django-contrib-staticfiles-storage-examples.html">storage</a>
<a href="/django-contrib-staticfiles-storage-cachedstaticfilesstorage-examples.html">.storage CachedStaticFilesStorage</a>,
<a href="/django-contrib-staticfiles-storage-hashedfilesmixin-examples.html">.storage HashedFilesMixin</a>,
<a href="/django-contrib-staticfiles-storage-manifeststaticfilesstorage-examples.html">.storage ManifestStaticFilesStorage</a>,
<a href="/django-contrib-staticfiles-storage-staticfilesstorage-examples.html">.storage StaticFilesStorage</a>,
<a href="/django-contrib-staticfiles-storage-staticfiles-storage-examples.html">.storage staticfiles_storage</a>
<a href="/django-contrib-staticfiles-utils-matches-patterns-examples.html">.utils matches_patterns</a>
</h4>
<h4 class="bp">django.core
<a href="/django-core-cache-examples.html">cache</a>,
<a href="/django-core-checks-examples.html">checks</a>,
<a href="/django-core-exceptions-examples.html">exceptions</a>,
<a href="/django-core-mail-examples.html">mail</a>,
<a href="/django-core-mail-send-mail-examples.html">mail.send_mail</a>,
<a href="/django-core-mail-messages-emailmessage-examples.html">mail.messages EmailMessage</a>,
<a href="/django-core-management-examples.html">management</a>,
<a href="/django-core-management-base-basecommand-examples.html">management.base BaseCommand</a>,
<a href="/django-core-serializers-examples.html">serializers</a>,
<a href="/django-core-signals-examples.html">signals</a>,
<a href="/django-core-signing-examples.html">signing</a>,
<a href="/django-core-validators-examples.html">validators</a>
</h4>
<h4 class="bp">django.core.exceptions
<a href="/django-core-exceptions-disallowedredirect-examples.html">DisallowedRedirect</a>,
<a href="/django-core-exceptions-fielddoesnotexist-examples.html">FieldDoesNotExist</a>,
<a href="/django-core-exceptions-fielderror-examples.html">FieldError</a>,
<a href="/django-core-exceptions-improperlyconfigured-examples.html">ImproperlyConfigured</a>,
<a href="/django-core-exceptions-middlewarenotused-examples.html">MiddlewareNotUsed</a>,
<a href="/django-core-exceptions-non-field-errors-examples.html">NON_FIELD_ERRORS</a>,
<a href="/django-core-exceptions-objectdoesnotexist-examples.html">ObjectDoesNotExist</a>,
<a href="/django-core-exceptions-permissiondenied-examples.html">PermissionDenied</a>,
<a href="/django-core-exceptions-suspiciousfileoperation-examples.html">SuspiciousFileOperation</a>,
<a href="/django-core-exceptions-suspiciousmultipartform-examples.html">SuspiciousMultipartForm</a>,
<a href="/django-core-exceptions-validationerror-examples.html">ValidationError</a>
</h4>
<h4 class="bp">django.db
<a href="/django-db-default-db-alias-examples.html">DEFAULT_DB_ALIAS</a>,
<a href="/django-db-dataerror-examples.html">DataError</a>,
<a href="/django-db-databaseerror-examples.html">DatabaseError</a>,
<a href="/django-db-integrityerror-examples.html">IntegrityError</a>,
<a href="/django-db-operationalerror-examples.html">OperationalError</a>,
<a href="/django-db-programmingerror-examples.html">ProgrammingError</a>,
<a href="/django-db-connection-examples.html">connection</a>,
<a href="/django-db-connections-examples.html">connections</a>,
<a href="/django-db-migrations-examples.html">migrations</a>,
<a href="/django-db-router-examples.html">router</a>,
<a href="/django-db-transaction-examples.html">transaction</a>
<a href="/django-db-backends-utils-examples.html">.backends utils</a>
</h4>
<h4 class="bp">django.db.migrations
<a href="/django-db-migrations-runpython-examples.html">RunPython</a>,
<a href="/django-db-migrations-autodetector-migrationautodetector-examples.html">.autodetector MigrationAutodetector</a>,
<a href="/django-db-migrations-exceptions-irreversibleerror-examples.html">.exceptions IrreversibleError</a>,
<a href="/django-db-migrations-executor-migrationexecutor-examples.html">.executor MigrationExecutor</a>,
<a href="/django-db-migrations-loader-migrations-module-name-examples.html">.loader MIGRATIONS_MODULE_NAME</a>,
<a href="/django-db-migrations-loader-migrationloader-examples.html">.loader MigrationLoader</a>,
<a href="/django-db-migrations-operations-base-operation-examples.html">.operations.base Operation</a>,
<a href="/django-db-migrations-state-projectstate-examples.html">.state ProjectState</a>
</h4>
<h4 class="bp"><a href="/django-db-models-examples.html">django.db.models</a>
<a href="/django-db-models-autofield-examples.html">AutoField</a>,
<a href="/django-db-models-booleanfield-examples.html">BooleanField</a>,
<a href="/django-db-models-charfield-examples.html">CharField</a>,
<a href="/django-db-models-datefield-examples.html">DateField</a>,
<a href="/django-db-models-datetimefield-examples.html">DateTimeField</a>,
<a href="/django-db-models-filefield-examples.html">FileField</a>,
<a href="/django-db-models-foreignkey-examples.html">ForeignKey</a>,
<a href="/django-db-models-genericipaddressfield-examples.html">GenericIPAddressField</a>,
<a href="/django-db-models-imagefield-examples.html">ImageField</a>,
<a href="/django-db-models-integerfield-examples.html">IntegerField</a>,
<a href="/django-db-models-model-examples.html">Model</a>,
<a href="/django-db-models-positiveintegerfield-examples.html">PositiveIntegerField</a>,
<a href="/django-db-models-positivesmallintegerfield-examples.html">PositiveSmallIntegerField</a>,
<a href="/django-db-models-signal-examples.html">signal</a>,
<a href="/django-db-models-slugfield-examples.html">SlugField</a>,
<a href="/django-db-models-smallintegerfield-examples.html">SmallIntegerField</a>,
<a href="/django-db-models-textfield-examples.html">TextField</a>
</h4>
<h4 class="bp">django.db.models.query
<a href="/django-db-models-query-baseiterable-examples.html">BaseIterable</a>,
<a href="/django-db-models-query-emptyqueryset-examples.html">EmptyQuerySet</a>,
<a href="/django-db-models-query-modeliterable-examples.html">ModelIterable</a>,
<a href="/django-db-models-query-prefetch-examples.html">Prefetch</a>,
<a href="/django-db-models-query-q-examples.html">Q</a>,
<a href="/django-db-models-query-queryset-examples.html">QuerySet</a>,
<a href="/django-db-models-query-prefetch-related-objects-examples.html">prefetch_related_objects</a>
</h4>
<h4 class="bp">django.db.models.query_utils
<a href="/django-db-models-query-utils-deferredattribute-examples.html">DeferredAttribute</a>,
<a href="/django-db-models-query-utils-pathinfo-examples.html">PathInfo</a>,
<a href="/django-db-models-query-utils-q-examples.html">Q</a>
</h4>
<h4 class="bp">django.db.models.signals
<a href="/django-db-models-signals-post-delete-examples.html">post_delete</a>,
<a href="/django-db-models-signals-post-save-examples.html">post_save</a>,
<a href="/django-db-models-signals-pre-delete-examples.html">pre_delete</a>,
<a href="/django-db-models-signals-pre-save-examples.html">pre_save</a>
</h4>
<h4 class="bp"><a href="/django-dispatch-dispatcher-signal-examples.html">django.dispatch.dispatcher Signal</a></h4>
<h4 class="bp"><a href="/django-forms-examples.html">django.forms</a>
<a href="/django-forms-baseform-examples.html">BaseForm</a>,
<a href="/django-forms-booleanfield-examples.html">BooleanField</a>,
<a href="/django-forms-charfield-examples.html">CharField</a>,
<a href="/django-forms-checkboxinput-examples.html">CheckboxInput</a>,
<a href="/django-forms-checkboxselectmultiple-examples.html">CheckboxSelectMultiple</a>,
<a href="/django-forms-choicefield-examples.html">ChoiceField</a>,
<a href="/django-forms-datefield-examples.html">DateField</a>,
<a href="/django-forms-dateinput-examples.html">DateInput</a>,
<a href="/django-forms-datetimefield-examples.html">DateTimeField</a>,
<a href="/django-forms-emailfield-examples.html">EmailField</a>,
<a href="/django-forms-field-examples.html">Field</a>,
<a href="/django-forms-fileinput-examples.html">FileInput</a>,
<a href="/django-forms-filepathfield-examples.html">FilePathField</a>,
<a href="/django-forms-form-examples.html">Form</a>,
<a href="/django-forms-hiddeninput-examples.html">HiddenInput</a>,
<a href="/django-forms-imagefield-examples.html">ImageField</a>,
<a href="/django-forms-integerfield-examples.html">IntegerField</a>,
<a href="/django-forms-media-examples.html">Media</a>,
<a href="/django-forms-mediadefiningclass-examples.html">MediaDefiningClass</a>,
<a href="/django-forms-modelchoicefield-examples.html">ModelChoiceField</a>,
<a href="/django-forms-modelform-examples.html">ModelForm</a>,
<a href="/django-forms-modelmultiplechoicefield-examples.html">ModelMultipleChoiceField</a>,
<a href="/django-forms-multiplechoicefield-examples.html">MultipleChoiceField</a>,
<a href="/django-forms-select-examples.html">Select</a>,
<a href="/django-forms-selectmultiple-examples.html">SelectMultiple</a>,
<a href="/django-forms-typedchoicefield-examples.html">TypedChoiceField</a>,
<a href="/django-forms-validationerror-examples.html">ValidationError</a>
</h4>
<h4 class="bp">django.http
<a href="/django-http-httpresponse-examples.html">HttpResponse</a>,
<a href="/django-http-httpresponsebadrequest-examples.html">HttpResponseBadRequest</a>,
<a href="/django-http-httpresponseforbidden-examples.html">HttpResponseForbidden</a>,
<a href="/django-http-httpresponsenotmodified-examples.html">HttpResponseNotModified</a>,
<a href="/django-http-http404-examples.html">Http404</a>,
<a href="/django-http-httpresponsepermanentredirect-examples.html">HttpResponsePermanentRedirect</a>,
<a href="/django-http-httpresponseredirect-examples.html">HttpResponseRedirect</a>
</h4>
<h4 class="bp">django.shortcuts
<a href="/django-shortcuts-get-list-or-404-examples.html">get_list_or_404</a>,
<a href="/django-shortcuts-get-object-or-404-examples.html">get_object_or_404</a>,
<a href="/django-shortcuts-redirect-examples.html">redirect</a>,
<a href="/django-shortcuts-render-examples.html">render</a>,
<a href="/django-shortcuts-resolve-url-examples.html">resolve_url</a>
</h4>
<h4 class="bp">django.template.base
<a href="/django-template-base-context-examples.html">Context</a>,
<a href="/django-template-base-filterexpression-examples.html">FilterExpression</a>,
<a href="/django-template-base-node-examples.html">Node</a>,
<a href="/django-template-base-nodelist-examples.html">NodeList</a>,
<a href="/django-template-base-parser-examples.html">Parser</a>,
<a href="/django-template-base-template-examples.html">Template</a>,
<a href="/django-template-base-templatesyntaxerror-examples.html">TemplateSyntaxError</a>,
<a href="/django-template-base-textnode-examples.html">TextNode</a>,
<a href="/django-template-base-token-examples.html">Token</a>,
<a href="/django-template-base-tokentype-examples.html">TokenType</a>,
<a href="/django-template-base-variabledoesnotexist-examples.html">VariableDoesNotExist</a>,
<a href="/django-template-base-variablenode-examples.html">VariableNode</a>,
<a href="/django-template-base-token-kwargs-examples.html">token_kwargs</a>
</h4>
<h4 class="bp">django.template.response
<a href="/django-template-response-simpletemplateresponse-examples.html">SimpleTemplateResponse</a>,
<a href="/django-template-response-templateresponse-examples.html">TemplateResponse</a>
</h4>
<h4 class="bp">django.urls
<a href="/django-urls-urlpattern-examples.html">URLPattern</a>,
<a href="/django-urls-urlresolver-examples.html">URLResolver</a>,
<a href="/django-urls-clear-url-caches-examples.html">clear_url_caches</a>,
<a href="/django-urls-get-callable-examples.html">get_callable</a>,
<a href="/django-urls-get-resolver-examples.html">get_resolver</a>,
<a href="/django-urls-get-script-prefix-examples.html">get_script_prefix</a>,
<a href="/django-urls-include-examples.html">include</a>,
<a href="/django-urls-path-examples.html">path</a>,
<a href="/django-urls-re-path-examples.html">re_path</a>,
<a href="/django-urls-register-converter-examples.html">register_converter</a>,
<a href="/django-urls-resolve-examples.html">resolve</a>,
<a href="/django-urls-reverse-examples.html">reverse</a>,
<a href="/django-urls-reverse-lazy-examples.html">reverse_lazy</a>
</h4>
<h4 class="bp">django.urls.exceptions
<a href="/django-urls-exceptions-noreversematch-examples.html">NoReverseMatch</a>,
<a href="/django-urls-exceptions-resolver404-examples.html">Resolver404</a>
</h4>
<h4 class="bp">django.utils
<a href="/django-utils-dateformat-examples.html">dateformat</a>,
<a href="/django-utils-dateparse-examples.html">dateparse</a>,
<a href="/django-utils-datetime-safe-examples.html">datetime_safe</a>,
<a href="/django-utils-formats-examples.html">formats</a>,
<a href="/django-utils-module-loading-examples.html">module_loading</a>,
<a href="/django-utils-termcolors-examples.html">termcolors</a>,
<a href="/django-utils-timezone-examples.html">timezone</a>,
<a href="/django-utils-translation-examples.html">translation</a>,
<a href="/django-utils-tree-examples.html">tree</a>
</h4>
<h4 class="bp">django.utils.cache
<a href="/django-utils-cache-add-never-cache-headers-examples.html">add_never_cache_headers</a>,
<a href="/django-utils-cache-cc-delim-re-examples.html">cc_delim_re</a>,
<a href="/django-utils-cache-patch-cache-control-examples.html">patch_cache_control</a>,
<a href="/django-utils-cache-patch-response-headers-examples.html">patch_response_headers</a>,
<a href="/django-utils-cache-patch-vary-headers-examples.html">patch_vary_headers</a>
</h4>
<h4 class="bp">django.utils.crypto
<a href="/django-utils-crypto-constant-time-compare-examples.html">constant_time_compare</a>,
<a href="/django-utils-crypto-get-random-string-examples.html">get_random_string</a>
</h4>
<h4 class="bp">django.utils.datastructures
<a href="/django-utils-datastructures-multivaluedict-examples.html">MultiValueDict</a>
</h4>
<h4 class="bp">django.utils.dateparse
<a href="/django-utils-dateparse-parse-datetime-examples.html">parse_datetime</a>,
<a href="/django-utils-dateparse-parse-duration-examples.html">parse_duration</a>
</h4>
<h4 class="bp">django.utils.dates
<a href="/django-utils-dates-months-examples.html">MONTHS</a>
</h4>
<h4 class="bp">django.utils.datetime_safe
<a href="/django-utils-datetime-safe-datetime-examples.html">datetime</a>
</h4>
<h4 class="bp">django.utils.decorators
<a href="/django-utils-decorators-method-decorator-examples.html">method_decorator</a>
</h4>
<h4 class="bp">django.utils.deprecation
<a href="/django-utils-deprecation-middlewaremixin-examples.html">MiddlewareMixin</a>,
<a href="/django-utils-deprecation-renamemethodsbase-examples.html">RenameMethodsBase</a>
</h4>
<h4 class="bp">django.utils.duration
<a href="/django-utils-duration-duration-string-examples.html">duration_string</a>
</h4>
<h4 class="bp">django.utils.encoding
<a href="/django-utils-encoding-djangounicodedecodeerror-examples.html">DjangoUnicodeDecodeError</a>,
<a href="/django-utils-encoding-filepath-to-uri-examples.html">filepath_to_uri</a>,
<a href="/django-utils-encoding-force-bytes-examples.html">force_bytes</a>,
<a href="/django-utils-encoding-force-str-examples.html">force_str</a>,
<a href="/django-utils-encoding-force-text-examples.html">force_text</a>,
<a href="/django-utils-encoding-iri-to-uri-examples.html">iri_to_uri</a>,
<a href="/django-utils-encoding-is-protected-type-examples.html">is_protected_type</a>,
<a href="/django-utils-encoding-smart-bytes-examples.html">smart_bytes</a>,
<a href="/django-utils-encoding-smart-str-examples.html">smart_str</a>,
<a href="/django-utils-encoding-smart-text-examples.html">smart_text</a>,
<a href="/django-utils-encoding-uri-to-iri-examples.html">uri_to_iri</a>
</h4>
<h4 class="bp">django.utils.formats
<a href="/django-utils-formats-get-format-examples.html">get_format</a>,
<a href="/django-utils-formats-localize-input-examples.html">localize_input</a>,
<a href="/django-utils-formats-sanitize-separators-examples.html">sanitize_separators</a>
</h4>
<h4 class="bp">django.utils.functional
<a href="/django-utils-functional-lazyobject-examples.html">LazyObject</a>,
<a href="/django-utils-functional-promise-examples.html">Promise</a>,
<a href="/django-utils-functional-simplelazyobject-examples.html">SimpleLazyObject</a>,
<a href="/django-utils-functional-keep-lazy-examples.html">keep_lazy</a>,
<a href="/django-utils-functional-lazy-examples.html">lazy</a>,
<a href="/django-utils-functional-total-ordering-examples.html">total_ordering</a>,
<a href="/django-utils-functional-wraps-examples.html">wraps</a>
</h4>
<h4 class="bp">django.utils.html
<a href="/django-utils-html-conditional-escape-examples.html">conditional_escape</a>,
<a href="/django-utils-html-escape-examples.html">escape</a>,
<a href="/django-utils-html-escapejs-examples.html">escapejs</a>,
<a href="/django-utils-html-format-html-examples.html">format_html</a>,
<a href="/django-utils-html-format-html-join-examples.html">format_html_join</a>,
<a href="/django-utils-html-mark-safe-examples.html">mark_safe</a>,
<a href="/django-utils-html-smart-urlquote-examples.html">smart_urlquote</a>,
<a href="/django-utils-html-strip-tags-examples.html">strip_tags</a>
</h4>
<h4 class="bp">django.utils.http
<a href="/django-utils-http-base36-to-int-examples.html">base36_to_int</a>,
<a href="/django-utils-http-http-date-examples.html">http_date</a>,
<a href="/django-utils-http-int-to-base36-examples.html">int_to_base36</a>,
<a href="/django-utils-http-is-safe-url-examples.html">is_safe_url</a>,
<a href="/django-utils-http-unquote-examples.html">unquote</a>,
<a href="/django-utils-http-url-has-allowed-host-and-scheme-examples.html">url_has_allowed_host_and_scheme</a>,
<a href="/django-utils-http-urlencode-examples.html">urlencode</a>,
<a href="/django-utils-http-urlquote-examples.html">urlquote</a>,
<a href="/django-utils-http-urlunquote-examples.html">urlunquote</a>
</h4>
<h4 class="bp">django.utils.ipv6
<a href="/django-utils-ipv6-clean-ipv6-address-examples.html">clean_ipv6_address</a>
</h4>
<h4 class="bp">django.utils.itercompat
<a href="/django-utils-itercompat-is-iterable-examples.html">is_iterable</a>
</h4>
<h4 class="bp">django.utils.module_loading
<a href="/django-utils-module-loading-autodiscover-modules-examples.html">autodiscover_modules</a>,
<a href="/django-utils-module-loading-import-string-examples.html">import_string</a>,
<a href="/django-utils-module-loading-module-has-submodule-examples.html">module_has_submodule</a>
</h4>
<h4 class="bp">django.utils.numberformat
<a href="/django-utils-numberformat-format-examples.html">format</a>
</h4>
<h4 class="bp">django.utils.safestring
<a href="/django-utils-safestring-safedata-examples.html">SafeData</a>,
<a href="/django-utils-safestring-safetext-examples.html">SafeText</a>,
<a href="/django-utils-safestring-mark-safe-examples.html">mark_safe</a>
</h4>
<h4 class="bp">django.utils.termcolors
<a href="/django-utils-termcolors-colorize-examples.html">colorize</a>
</h4>
<h4 class="bp">django.utils.text
<a href="/django-utils-text-truncator-examples.html">Truncator</a>,
<a href="/django-utils-text-capfirst-examples.html">capfirst</a>,
<a href="/django-utils-text-format-lazy-examples.html">format_lazy</a>,
<a href="/django-utils-text-get-text-list-examples.html">get_text_list</a>,
<a href="/django-utils-text-get-valid-filename-examples.html">get_valid_filename</a>,
<a href="/django-utils-text-slugify-examples.html">slugify</a>
</h4>
<h4 class="bp"><a href="/django-utils-timezone-examples.html">django.utils.timezone</a>
<a href="/django-utils-timezone-get-current-timezone-examples.html">get_current_timezone</a>,
<a href="/django-utils-timezone-make-aware-examples.html">make_aware</a>,
<a href="/django-utils-timezone-now-examples.html">now</a>,
<a href="/django-utils-timezone-timedelta-examples.html">timedelta</a>
</h4>
<h4 class="bp">django.utils.translation
<a href="/django-utils-translation-language-session-key-examples.html">LANGUAGE_SESSION_KEY</a>,
<a href="/django-utils-translation-activate-examples.html">activate</a>,
<a href="/django-utils-translation-deactivate-all-examples.html">deactivate_all</a>,
<a href="/django-utils-translation-get-language-examples.html">get_language</a>,
<a href="/django-utils-translation-get-language-from-request-examples.html">get_language_from_request</a>,
<a href="/django-utils-translation-gettext-examples.html">gettext</a>,
<a href="/django-utils-translation-gettext-lazy-examples.html">gettext_lazy</a>,
<a href="/django-utils-translation-ngettext-examples.html">ngettext</a>,
<a href="/django-utils-translation-override-examples.html">override</a>,
<a href="/django-utils-translation-pgettext-examples.html">pgettext</a>,
<a href="/django-utils-translation-pgettext-lazy-examples.html">pgettext_lazy</a>,
<a href="/django-utils-translation-ugettext-examples.html">ugettext</a>,
<a href="/django-utils-translation-ugettext-lazy-examples.html">ugettext_lazy</a>,
<a href="/django-utils-translation-ungettext-examples.html">ungettext</a>,
<a href="/django-utils-translation-ungettext-lazy-examples.html">ungettext_lazy</a>
</h4>
<h4 class="bp">django.utils.version
<a href="/django-utils-version-get-complete-version-examples.html">get_complete_version</a>
</h4>
<h4 class="bp">django.views
<a href="/django-views-csrf-examples.html">csrf</a>
<a href="/django-views-debug-get-default-exception-reporter-filter-examples.html">.debug get_default_exception_reporter_filter</a>
<a href="/django-views-decorators-csrf-csrf-exempt-examples.html">.decorators.csrf csrf_exempt</a>
<a href="/django-views-decorators-debug-sensitive-post-parameters-examples.html">.decorators.debug sensitive_post_parameters</a>
<a href="/django-views-decorators-http-require-get-examples.html">.decorators.http require_GET</a>,
<a href="/django-views-decorators-http-require-post-examples.html">.decorators.http require_POST</a>
</h4>
<h4 class="bp">django.views.generic
<a href="/django-views-generic-createview-examples.html">CreateView</a>,
<a href="/django-views-generic-deleteview-examples.html">DeleteView</a>,
<a href="/django-views-generic-detailview-examples.html">DetailView</a>,
<a href="/django-views-generic-formview-examples.html">FormView</a>,
<a href="/django-views-generic-listview-examples.html">ListView</a>,
<a href="/django-views-generic-redirectview-examples.html">RedirectView</a>,
<a href="/django-views-generic-templateview-examples.html">TemplateView</a>,
<a href="/django-views-generic-updateview-examples.html">UpdateView</a>,
<a href="/django-views-generic-view-examples.html">View</a>
</h4>
<h4 class="bp">django.views.generic.base
<a href="/django-views-generic-base-redirectview-examples.html">RedirectView</a>,
<a href="/django-views-generic-base-templateresponsemixin-examples.html">TemplateResponseMixin</a>,
<a href="/django-views-generic-base-templateview-examples.html">TemplateView</a>,
<a href="/django-views-generic-base-view-examples.html">View</a>
</h4>
<h4 class="bp">django.views.generic.detail
<a href="/django-views-generic-detail-singleobjectmixin-examples.html">SingleObjectMixin</a>
</h4>
<h4 class="bp">django.views.generic.edit
<a href="/django-views-generic-edit-createview-examples.html">CreateView</a>,
<a href="/django-views-generic-edit-deleteview-examples.html">DeleteView</a>,
<a href="/django-views-generic-edit-deletionmixin-examples.html">DeletionMixin</a>,
<a href="/django-views-generic-edit-formmixin-examples.html">FormMixin</a>,
<a href="/django-views-generic-edit-formview-examples.html">FormView</a>
</h4>
<h4 class="bp">django.views.generic.list
<a href="/django-views-generic-list-listview-examples.html">ListView</a>,
<a href="/django-views-generic-list-multipleobjectmixin-examples.html">MultipleObjectMixin</a>
</h4>
<h4 class="bp">django.views.i18n
<a href="/django-views-i18n-javascriptcatalog-examples.html">JavaScriptCatalog</a>
</h4>
<h4 class="bp">django.views.static
<a href="/django-views-static-serve-examples.html">serve</a>,
<a href="/django-views-static-was-modified-since-examples.html">was_modified_since</a>
</h4>
</div>
</div>