generated from fastai/nbdev_template
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path_modidx.py
1938 lines (1937 loc) · 374 KB
/
_modidx.py
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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Autogenerated by get_module_idx.py
d = { 'settings': {'lib_path': 'nbdev_django'},
'syms': { 'asgiref.sync': { 'asgiref.sync.async_to_sync': 'https://django.readthedocs.org/en/latest/topics/async.html#asgiref.sync.async_to_sync',
'asgiref.sync.sync_to_async': 'https://django.readthedocs.org/en/latest/topics/async.html#asgiref.sync.sync_to_async'},
'django': { 'django.apps': 'https://django.readthedocs.org/en/latest/ref/applications.html#module-django.apps',
'django.db': 'https://django.readthedocs.org/en/latest/topics/db/index.html#module-django.db',
'django.dispatch': 'https://django.readthedocs.org/en/latest/topics/signals.html#module-django.dispatch',
'django.forms': 'https://django.readthedocs.org/en/latest/ref/forms/api.html#module-django.forms',
'django.http': 'https://django.readthedocs.org/en/latest/ref/request-response.html#module-django.http',
'django.middleware': 'https://django.readthedocs.org/en/latest/ref/middleware.html#module-django.middleware',
'django.setup': 'https://django.readthedocs.org/en/latest/ref/applications.html#django.setup',
'django.shortcuts': 'https://django.readthedocs.org/en/latest/topics/http/shortcuts.html#module-django.shortcuts',
'django.template': 'https://django.readthedocs.org/en/latest/topics/templates.html#module-django.template',
'django.test': 'https://django.readthedocs.org/en/latest/topics/testing/overview.html#module-django.test',
'django.urls': 'https://django.readthedocs.org/en/latest/ref/urlresolvers.html#module-django.urls',
'django.utils': 'https://django.readthedocs.org/en/latest/ref/utils.html#module-django.utils',
'django.views': 'https://django.readthedocs.org/en/latest/ref/views.html#module-django.views'},
'django.apps': { 'django.apps.AppConfig': 'https://django.readthedocs.org/en/latest/ref/applications.html#django.apps.AppConfig',
'django.apps.AppConfig.get_model': 'https://django.readthedocs.org/en/latest/ref/applications.html#django.apps.AppConfig.get_model',
'django.apps.AppConfig.get_models': 'https://django.readthedocs.org/en/latest/ref/applications.html#django.apps.AppConfig.get_models',
'django.apps.AppConfig.ready': 'https://django.readthedocs.org/en/latest/ref/applications.html#django.apps.AppConfig.ready',
'django.apps.apps.get_app_config': 'https://django.readthedocs.org/en/latest/ref/applications.html#django.apps.apps.get_app_config',
'django.apps.apps.get_app_configs': 'https://django.readthedocs.org/en/latest/ref/applications.html#django.apps.apps.get_app_configs',
'django.apps.apps.get_model': 'https://django.readthedocs.org/en/latest/ref/applications.html#django.apps.apps.get_model',
'django.apps.apps.is_installed': 'https://django.readthedocs.org/en/latest/ref/applications.html#django.apps.apps.is_installed'},
'django.conf': {'django.conf.urls': 'https://django.readthedocs.org/en/latest/ref/urls.html#module-django.conf.urls'},
'django.conf.settings': { 'django.conf.settings.configure': 'https://django.readthedocs.org/en/latest/topics/settings.html#django.conf.settings.configure'},
'django.conf.urls': {'django.conf.urls.i18n': 'https://django.readthedocs.org/en/latest/topics/i18n/translation.html#module-django.conf.urls.i18n'},
'django.conf.urls.i18n': { 'django.conf.urls.i18n.i18n_patterns': 'https://django.readthedocs.org/en/latest/topics/i18n/translation.html#django.conf.urls.i18n.i18n_patterns'},
'django.conf.urls.static': { 'django.conf.urls.static.static': 'https://django.readthedocs.org/en/latest/ref/urls.html#django.conf.urls.static.static'},
'django.contrib': { 'django.contrib.admin': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#module-django.contrib.admin',
'django.contrib.admindocs': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/admindocs.html#module-django.contrib.admindocs',
'django.contrib.auth': 'https://django.readthedocs.org/en/latest/topics/auth/index.html#module-django.contrib.auth',
'django.contrib.contenttypes': 'https://django.readthedocs.org/en/latest/ref/contrib/contenttypes.html#module-django.contrib.contenttypes',
'django.contrib.flatpages': 'https://django.readthedocs.org/en/latest/ref/contrib/flatpages.html#module-django.contrib.flatpages',
'django.contrib.gis': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/index.html#module-django.contrib.gis',
'django.contrib.humanize': 'https://django.readthedocs.org/en/latest/ref/contrib/humanize.html#module-django.contrib.humanize',
'django.contrib.messages': 'https://django.readthedocs.org/en/latest/ref/contrib/messages.html#module-django.contrib.messages',
'django.contrib.postgres': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/index.html#module-django.contrib.postgres',
'django.contrib.redirects': 'https://django.readthedocs.org/en/latest/ref/contrib/redirects.html#module-django.contrib.redirects',
'django.contrib.sessions': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#module-django.contrib.sessions',
'django.contrib.sitemaps': 'https://django.readthedocs.org/en/latest/ref/contrib/sitemaps.html#module-django.contrib.sitemaps',
'django.contrib.sites': 'https://django.readthedocs.org/en/latest/ref/contrib/sites.html#module-django.contrib.sites',
'django.contrib.staticfiles': 'https://django.readthedocs.org/en/latest/ref/contrib/staticfiles.html#module-django.contrib.staticfiles',
'django.contrib.syndication': 'https://django.readthedocs.org/en/latest/ref/contrib/syndication.html#module-django.contrib.syndication'},
'django.contrib.admin': { 'django.contrib.admin.AdminSite': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.AdminSite',
'django.contrib.admin.AdminSite.add_action': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/actions.html#django.contrib.admin.AdminSite.add_action',
'django.contrib.admin.AdminSite.disable_action': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/actions.html#django.contrib.admin.AdminSite.disable_action',
'django.contrib.admin.AdminSite.each_context': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.AdminSite.each_context',
'django.contrib.admin.AdminSite.get_app_list': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.AdminSite.get_app_list',
'django.contrib.admin.AdminSite.get_log_entries': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.AdminSite.get_log_entries',
'django.contrib.admin.AdminSite.get_model_admin': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.AdminSite.get_model_admin',
'django.contrib.admin.AdminSite.has_permission': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.AdminSite.has_permission',
'django.contrib.admin.AdminSite.register': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.AdminSite.register',
'django.contrib.admin.AdminSite.unregister': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.AdminSite.unregister',
'django.contrib.admin.InlineModelAdmin': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.InlineModelAdmin',
'django.contrib.admin.InlineModelAdmin.get_extra': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.InlineModelAdmin.get_extra',
'django.contrib.admin.InlineModelAdmin.get_formset': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.InlineModelAdmin.get_formset',
'django.contrib.admin.InlineModelAdmin.get_max_num': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.InlineModelAdmin.get_max_num',
'django.contrib.admin.InlineModelAdmin.get_min_num': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.InlineModelAdmin.get_min_num',
'django.contrib.admin.InlineModelAdmin.has_add_permission': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.InlineModelAdmin.has_add_permission',
'django.contrib.admin.InlineModelAdmin.has_change_permission': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.InlineModelAdmin.has_change_permission',
'django.contrib.admin.InlineModelAdmin.has_delete_permission': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.InlineModelAdmin.has_delete_permission',
'django.contrib.admin.ModelAdmin': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin',
'django.contrib.admin.ModelAdmin.add_view': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.add_view',
'django.contrib.admin.ModelAdmin.change_view': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.change_view',
'django.contrib.admin.ModelAdmin.changelist_view': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.changelist_view',
'django.contrib.admin.ModelAdmin.delete_model': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.delete_model',
'django.contrib.admin.ModelAdmin.delete_queryset': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.delete_queryset',
'django.contrib.admin.ModelAdmin.delete_view': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.delete_view',
'django.contrib.admin.ModelAdmin.formfield_for_choice_field': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.formfield_for_choice_field',
'django.contrib.admin.ModelAdmin.formfield_for_foreignkey': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.formfield_for_foreignkey',
'django.contrib.admin.ModelAdmin.formfield_for_manytomany': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.formfield_for_manytomany',
'django.contrib.admin.ModelAdmin.get_actions': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/actions.html#django.contrib.admin.ModelAdmin.get_actions',
'django.contrib.admin.ModelAdmin.get_autocomplete_fields': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.get_autocomplete_fields',
'django.contrib.admin.ModelAdmin.get_changeform_initial_data': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.get_changeform_initial_data',
'django.contrib.admin.ModelAdmin.get_changelist': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.get_changelist',
'django.contrib.admin.ModelAdmin.get_changelist_form': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.get_changelist_form',
'django.contrib.admin.ModelAdmin.get_changelist_formset': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.get_changelist_formset',
'django.contrib.admin.ModelAdmin.get_deleted_objects': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.get_deleted_objects',
'django.contrib.admin.ModelAdmin.get_exclude': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.get_exclude',
'django.contrib.admin.ModelAdmin.get_fields': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.get_fields',
'django.contrib.admin.ModelAdmin.get_fieldsets': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.get_fieldsets',
'django.contrib.admin.ModelAdmin.get_form': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.get_form',
'django.contrib.admin.ModelAdmin.get_formset_kwargs': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.get_formset_kwargs',
'django.contrib.admin.ModelAdmin.get_formsets_with_inlines': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.get_formsets_with_inlines',
'django.contrib.admin.ModelAdmin.get_inline_instances': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.get_inline_instances',
'django.contrib.admin.ModelAdmin.get_inlines': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.get_inlines',
'django.contrib.admin.ModelAdmin.get_list_display': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.get_list_display',
'django.contrib.admin.ModelAdmin.get_list_display_links': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.get_list_display_links',
'django.contrib.admin.ModelAdmin.get_list_filter': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.get_list_filter',
'django.contrib.admin.ModelAdmin.get_list_select_related': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.get_list_select_related',
'django.contrib.admin.ModelAdmin.get_ordering': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.get_ordering',
'django.contrib.admin.ModelAdmin.get_paginator': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.get_paginator',
'django.contrib.admin.ModelAdmin.get_prepopulated_fields': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.get_prepopulated_fields',
'django.contrib.admin.ModelAdmin.get_queryset': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.get_queryset',
'django.contrib.admin.ModelAdmin.get_readonly_fields': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.get_readonly_fields',
'django.contrib.admin.ModelAdmin.get_search_fields': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.get_search_fields',
'django.contrib.admin.ModelAdmin.get_search_results': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.get_search_results',
'django.contrib.admin.ModelAdmin.get_sortable_by': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.get_sortable_by',
'django.contrib.admin.ModelAdmin.get_urls': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.get_urls',
'django.contrib.admin.ModelAdmin.has_add_permission': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.has_add_permission',
'django.contrib.admin.ModelAdmin.has_change_permission': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.has_change_permission',
'django.contrib.admin.ModelAdmin.has_delete_permission': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.has_delete_permission',
'django.contrib.admin.ModelAdmin.has_module_permission': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.has_module_permission',
'django.contrib.admin.ModelAdmin.has_view_permission': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.has_view_permission',
'django.contrib.admin.ModelAdmin.history_view': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.history_view',
'django.contrib.admin.ModelAdmin.lookup_allowed': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.lookup_allowed',
'django.contrib.admin.ModelAdmin.message_user': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.message_user',
'django.contrib.admin.ModelAdmin.response_add': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.response_add',
'django.contrib.admin.ModelAdmin.response_change': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.response_change',
'django.contrib.admin.ModelAdmin.response_delete': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.response_delete',
'django.contrib.admin.ModelAdmin.save_formset': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.save_formset',
'django.contrib.admin.ModelAdmin.save_model': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.save_model',
'django.contrib.admin.ModelAdmin.save_related': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.save_related',
'django.contrib.admin.StackedInline': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.StackedInline',
'django.contrib.admin.TabularInline': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.TabularInline',
'django.contrib.admin.action': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/actions.html#django.contrib.admin.action',
'django.contrib.admin.autodiscover': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.autodiscover',
'django.contrib.admin.display': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.display',
'django.contrib.admin.register': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.register'},
'django.contrib.admin.ModelAdmin': { 'django.contrib.admin.ModelAdmin.ShowFacets': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.ModelAdmin.ShowFacets'},
'django.contrib.admin.apps': { 'django.contrib.admin.apps.AdminConfig': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.apps.AdminConfig',
'django.contrib.admin.apps.SimpleAdminConfig': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.apps.SimpleAdminConfig'},
'django.contrib.admin.models': { 'django.contrib.admin.models.LogEntry': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.models.LogEntry',
'django.contrib.admin.models.LogEntry.get_change_message': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.models.LogEntry.get_change_message',
'django.contrib.admin.models.LogEntry.get_edited_object': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.models.LogEntry.get_edited_object'},
'django.contrib.admin.views.decorators': { 'django.contrib.admin.views.decorators.staff_member_required': 'https://django.readthedocs.org/en/latest/ref/contrib/admin/index.html#django.contrib.admin.views.decorators.staff_member_required'},
'django.contrib.auth': { 'django.contrib.auth.aauthenticate': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.aauthenticate',
'django.contrib.auth.aget_user': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.aget_user',
'django.contrib.auth.alogin': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.alogin',
'django.contrib.auth.alogout': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.alogout',
'django.contrib.auth.aupdate_session_auth_hash': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.aupdate_session_auth_hash',
'django.contrib.auth.authenticate': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.authenticate',
'django.contrib.auth.backends': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#module-django.contrib.auth.backends',
'django.contrib.auth.forms': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#module-django.contrib.auth.forms',
'django.contrib.auth.get_user': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.get_user',
'django.contrib.auth.get_user_model': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.get_user_model',
'django.contrib.auth.hashers': 'https://django.readthedocs.org/en/latest/topics/auth/passwords.html#module-django.contrib.auth.hashers',
'django.contrib.auth.login': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.login',
'django.contrib.auth.logout': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.logout',
'django.contrib.auth.middleware': 'https://django.readthedocs.org/en/latest/ref/middleware.html#module-django.contrib.auth.middleware',
'django.contrib.auth.password_validation': 'https://django.readthedocs.org/en/latest/topics/auth/passwords.html#module-django.contrib.auth.password_validation',
'django.contrib.auth.signals': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#module-django.contrib.auth.signals',
'django.contrib.auth.update_session_auth_hash': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.update_session_auth_hash',
'django.contrib.auth.views': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#module-django.contrib.auth.views'},
'django.contrib.auth.backends': { 'django.contrib.auth.backends.AllowAllUsersModelBackend': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.AllowAllUsersModelBackend',
'django.contrib.auth.backends.AllowAllUsersRemoteUserBackend': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.AllowAllUsersRemoteUserBackend',
'django.contrib.auth.backends.BaseBackend': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.BaseBackend',
'django.contrib.auth.backends.BaseBackend.aget_all_permissions': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.BaseBackend.aget_all_permissions',
'django.contrib.auth.backends.BaseBackend.aget_group_permissions': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.BaseBackend.aget_group_permissions',
'django.contrib.auth.backends.BaseBackend.aget_user_permissions': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.BaseBackend.aget_user_permissions',
'django.contrib.auth.backends.BaseBackend.ahas_perm': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.BaseBackend.ahas_perm',
'django.contrib.auth.backends.BaseBackend.get_all_permissions': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.BaseBackend.get_all_permissions',
'django.contrib.auth.backends.BaseBackend.get_group_permissions': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.BaseBackend.get_group_permissions',
'django.contrib.auth.backends.BaseBackend.get_user_permissions': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.BaseBackend.get_user_permissions',
'django.contrib.auth.backends.BaseBackend.has_perm': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.BaseBackend.has_perm',
'django.contrib.auth.backends.ModelBackend': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.ModelBackend',
'django.contrib.auth.backends.ModelBackend.aauthenticate': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.ModelBackend.aauthenticate',
'django.contrib.auth.backends.ModelBackend.aget_all_permissions': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.ModelBackend.aget_all_permissions',
'django.contrib.auth.backends.ModelBackend.aget_group_permissions': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.ModelBackend.aget_group_permissions',
'django.contrib.auth.backends.ModelBackend.aget_user_permissions': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.ModelBackend.aget_user_permissions',
'django.contrib.auth.backends.ModelBackend.ahas_module_perms': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.ModelBackend.ahas_module_perms',
'django.contrib.auth.backends.ModelBackend.ahas_perm': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.ModelBackend.ahas_perm',
'django.contrib.auth.backends.ModelBackend.authenticate': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.ModelBackend.authenticate',
'django.contrib.auth.backends.ModelBackend.get_all_permissions': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.ModelBackend.get_all_permissions',
'django.contrib.auth.backends.ModelBackend.get_group_permissions': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.ModelBackend.get_group_permissions',
'django.contrib.auth.backends.ModelBackend.get_user_permissions': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.ModelBackend.get_user_permissions',
'django.contrib.auth.backends.ModelBackend.has_module_perms': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.ModelBackend.has_module_perms',
'django.contrib.auth.backends.ModelBackend.has_perm': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.ModelBackend.has_perm',
'django.contrib.auth.backends.ModelBackend.user_can_authenticate': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.ModelBackend.user_can_authenticate',
'django.contrib.auth.backends.ModelBackend.with_perm': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.ModelBackend.with_perm',
'django.contrib.auth.backends.RemoteUserBackend': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.RemoteUserBackend',
'django.contrib.auth.backends.RemoteUserBackend.aauthenticate': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.RemoteUserBackend.aauthenticate',
'django.contrib.auth.backends.RemoteUserBackend.aconfigure_user': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.RemoteUserBackend.aconfigure_user',
'django.contrib.auth.backends.RemoteUserBackend.authenticate': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.RemoteUserBackend.authenticate',
'django.contrib.auth.backends.RemoteUserBackend.clean_username': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.RemoteUserBackend.clean_username',
'django.contrib.auth.backends.RemoteUserBackend.configure_user': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.RemoteUserBackend.configure_user',
'django.contrib.auth.backends.RemoteUserBackend.user_can_authenticate': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.backends.RemoteUserBackend.user_can_authenticate'},
'django.contrib.auth.context_processors': { 'django.contrib.auth.context_processors.auth': 'https://django.readthedocs.org/en/latest/ref/templates/api.html#django.contrib.auth.context_processors.auth'},
'django.contrib.auth.decorators': { 'django.contrib.auth.decorators.login_not_required': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.decorators.login_not_required',
'django.contrib.auth.decorators.login_required': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.decorators.login_required',
'django.contrib.auth.decorators.permission_required': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.decorators.permission_required',
'django.contrib.auth.decorators.user_passes_test': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.decorators.user_passes_test'},
'django.contrib.auth.forms': { 'django.contrib.auth.forms.AdminPasswordChangeForm': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.forms.AdminPasswordChangeForm',
'django.contrib.auth.forms.AdminUserCreationForm': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.forms.AdminUserCreationForm',
'django.contrib.auth.forms.AuthenticationForm': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.forms.AuthenticationForm',
'django.contrib.auth.forms.AuthenticationForm.confirm_login_allowed': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.forms.AuthenticationForm.confirm_login_allowed',
'django.contrib.auth.forms.BaseUserCreationForm': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.forms.BaseUserCreationForm',
'django.contrib.auth.forms.PasswordChangeForm': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.forms.PasswordChangeForm',
'django.contrib.auth.forms.PasswordResetForm': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.forms.PasswordResetForm',
'django.contrib.auth.forms.PasswordResetForm.send_mail': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.forms.PasswordResetForm.send_mail',
'django.contrib.auth.forms.SetPasswordForm': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.forms.SetPasswordForm',
'django.contrib.auth.forms.UserChangeForm': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.forms.UserChangeForm',
'django.contrib.auth.forms.UserCreationForm': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.forms.UserCreationForm'},
'django.contrib.auth.hashers': { 'django.contrib.auth.hashers.acheck_password': 'https://django.readthedocs.org/en/latest/topics/auth/passwords.html#django.contrib.auth.hashers.acheck_password',
'django.contrib.auth.hashers.check_password': 'https://django.readthedocs.org/en/latest/topics/auth/passwords.html#django.contrib.auth.hashers.check_password',
'django.contrib.auth.hashers.is_password_usable': 'https://django.readthedocs.org/en/latest/topics/auth/passwords.html#django.contrib.auth.hashers.is_password_usable',
'django.contrib.auth.hashers.make_password': 'https://django.readthedocs.org/en/latest/topics/auth/passwords.html#django.contrib.auth.hashers.make_password'},
'django.contrib.auth.middleware': { 'django.contrib.auth.middleware.AuthenticationMiddleware': 'https://django.readthedocs.org/en/latest/ref/middleware.html#django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.auth.middleware.LoginRequiredMiddleware': 'https://django.readthedocs.org/en/latest/ref/middleware.html#django.contrib.auth.middleware.LoginRequiredMiddleware',
'django.contrib.auth.middleware.LoginRequiredMiddleware.get_login_url': 'https://django.readthedocs.org/en/latest/ref/middleware.html#django.contrib.auth.middleware.LoginRequiredMiddleware.get_login_url',
'django.contrib.auth.middleware.LoginRequiredMiddleware.get_redirect_field_name': 'https://django.readthedocs.org/en/latest/ref/middleware.html#django.contrib.auth.middleware.LoginRequiredMiddleware.get_redirect_field_name',
'django.contrib.auth.middleware.PersistentRemoteUserMiddleware': 'https://django.readthedocs.org/en/latest/ref/middleware.html#django.contrib.auth.middleware.PersistentRemoteUserMiddleware',
'django.contrib.auth.middleware.RemoteUserMiddleware': 'https://django.readthedocs.org/en/latest/ref/middleware.html#django.contrib.auth.middleware.RemoteUserMiddleware'},
'django.contrib.auth.mixins': { 'django.contrib.auth.mixins.AccessMixin': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.mixins.AccessMixin',
'django.contrib.auth.mixins.AccessMixin.get_login_url': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.mixins.AccessMixin.get_login_url',
'django.contrib.auth.mixins.AccessMixin.get_permission_denied_message': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.mixins.AccessMixin.get_permission_denied_message',
'django.contrib.auth.mixins.AccessMixin.get_redirect_field_name': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.mixins.AccessMixin.get_redirect_field_name',
'django.contrib.auth.mixins.AccessMixin.handle_no_permission': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.mixins.AccessMixin.handle_no_permission',
'django.contrib.auth.mixins.LoginRequiredMixin': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.mixins.LoginRequiredMixin',
'django.contrib.auth.mixins.PermissionRequiredMixin': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.mixins.PermissionRequiredMixin',
'django.contrib.auth.mixins.PermissionRequiredMixin.get_permission_required': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.mixins.PermissionRequiredMixin.get_permission_required',
'django.contrib.auth.mixins.PermissionRequiredMixin.has_permission': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.mixins.PermissionRequiredMixin.has_permission',
'django.contrib.auth.mixins.UserPassesTestMixin': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.mixins.UserPassesTestMixin',
'django.contrib.auth.mixins.UserPassesTestMixin.get_test_func': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.mixins.UserPassesTestMixin.get_test_func',
'django.contrib.auth.mixins.UserPassesTestMixin.test_func': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.mixins.UserPassesTestMixin.test_func'},
'django.contrib.auth.models': { 'django.contrib.auth.models.AbstractBaseUser': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.AbstractBaseUser',
'django.contrib.auth.models.AbstractBaseUser.acheck_password': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.AbstractBaseUser.acheck_password',
'django.contrib.auth.models.AbstractBaseUser.check_password': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.AbstractBaseUser.check_password',
'django.contrib.auth.models.AbstractBaseUser.clean': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.AbstractBaseUser.clean',
'django.contrib.auth.models.AbstractBaseUser.get_email_field_name': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.AbstractBaseUser.get_email_field_name',
'django.contrib.auth.models.AbstractBaseUser.get_session_auth_fallback_hash': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.AbstractBaseUser.get_session_auth_fallback_hash',
'django.contrib.auth.models.AbstractBaseUser.get_session_auth_hash': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.AbstractBaseUser.get_session_auth_hash',
'django.contrib.auth.models.AbstractBaseUser.get_username': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.AbstractBaseUser.get_username',
'django.contrib.auth.models.AbstractBaseUser.has_usable_password': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.AbstractBaseUser.has_usable_password',
'django.contrib.auth.models.AbstractBaseUser.normalize_username': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.AbstractBaseUser.normalize_username',
'django.contrib.auth.models.AbstractBaseUser.set_password': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.AbstractBaseUser.set_password',
'django.contrib.auth.models.AbstractBaseUser.set_unusable_password': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.AbstractBaseUser.set_unusable_password',
'django.contrib.auth.models.AbstractUser': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.AbstractUser',
'django.contrib.auth.models.AbstractUser.clean': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.AbstractUser.clean',
'django.contrib.auth.models.AnonymousUser': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.AnonymousUser',
'django.contrib.auth.models.BaseUserManager': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.BaseUserManager',
'django.contrib.auth.models.BaseUserManager.aget_by_natural_key': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.BaseUserManager.aget_by_natural_key',
'django.contrib.auth.models.BaseUserManager.get_by_natural_key': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.BaseUserManager.get_by_natural_key',
'django.contrib.auth.models.BaseUserManager.normalize_email': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.BaseUserManager.normalize_email',
'django.contrib.auth.models.CustomUser': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.CustomUser',
'django.contrib.auth.models.CustomUser.get_full_name': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.CustomUser.get_full_name',
'django.contrib.auth.models.CustomUser.get_short_name': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.CustomUser.get_short_name',
'django.contrib.auth.models.CustomUserManager': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.CustomUserManager',
'django.contrib.auth.models.CustomUserManager.create_superuser': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.CustomUserManager.create_superuser',
'django.contrib.auth.models.CustomUserManager.create_user': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.CustomUserManager.create_user',
'django.contrib.auth.models.Group': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.Group',
'django.contrib.auth.models.Permission': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.Permission',
'django.contrib.auth.models.PermissionsMixin': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.PermissionsMixin',
'django.contrib.auth.models.PermissionsMixin.get_all_permissions': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.PermissionsMixin.get_all_permissions',
'django.contrib.auth.models.PermissionsMixin.get_group_permissions': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.PermissionsMixin.get_group_permissions',
'django.contrib.auth.models.PermissionsMixin.get_user_permissions': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.PermissionsMixin.get_user_permissions',
'django.contrib.auth.models.PermissionsMixin.has_module_perms': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.PermissionsMixin.has_module_perms',
'django.contrib.auth.models.PermissionsMixin.has_perm': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.PermissionsMixin.has_perm',
'django.contrib.auth.models.PermissionsMixin.has_perms': 'https://django.readthedocs.org/en/latest/topics/auth/customizing.html#django.contrib.auth.models.PermissionsMixin.has_perms',
'django.contrib.auth.models.User': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.User',
'django.contrib.auth.models.User.acheck_password': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.User.acheck_password',
'django.contrib.auth.models.User.aget_all_permissions': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.User.aget_all_permissions',
'django.contrib.auth.models.User.aget_group_permissions': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.User.aget_group_permissions',
'django.contrib.auth.models.User.aget_user_permissions': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.User.aget_user_permissions',
'django.contrib.auth.models.User.ahas_module_perms': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.User.ahas_module_perms',
'django.contrib.auth.models.User.ahas_perm': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.User.ahas_perm',
'django.contrib.auth.models.User.ahas_perms': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.User.ahas_perms',
'django.contrib.auth.models.User.check_password': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.User.check_password',
'django.contrib.auth.models.User.email_user': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.User.email_user',
'django.contrib.auth.models.User.get_all_permissions': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.User.get_all_permissions',
'django.contrib.auth.models.User.get_full_name': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.User.get_full_name',
'django.contrib.auth.models.User.get_group_permissions': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.User.get_group_permissions',
'django.contrib.auth.models.User.get_short_name': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.User.get_short_name',
'django.contrib.auth.models.User.get_user_permissions': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.User.get_user_permissions',
'django.contrib.auth.models.User.get_username': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.User.get_username',
'django.contrib.auth.models.User.has_module_perms': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.User.has_module_perms',
'django.contrib.auth.models.User.has_perm': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.User.has_perm',
'django.contrib.auth.models.User.has_perms': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.User.has_perms',
'django.contrib.auth.models.User.has_usable_password': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.User.has_usable_password',
'django.contrib.auth.models.User.set_password': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.User.set_password',
'django.contrib.auth.models.User.set_unusable_password': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.User.set_unusable_password',
'django.contrib.auth.models.UserManager': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.UserManager',
'django.contrib.auth.models.UserManager.acreate_superuser': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.UserManager.acreate_superuser',
'django.contrib.auth.models.UserManager.acreate_user': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.UserManager.acreate_user',
'django.contrib.auth.models.UserManager.create_superuser': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.UserManager.create_superuser',
'django.contrib.auth.models.UserManager.create_user': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.UserManager.create_user',
'django.contrib.auth.models.UserManager.with_perm': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.models.UserManager.with_perm'},
'django.contrib.auth.password_validation': { 'django.contrib.auth.password_validation.CommonPasswordValidator': 'https://django.readthedocs.org/en/latest/topics/auth/passwords.html#django.contrib.auth.password_validation.CommonPasswordValidator',
'django.contrib.auth.password_validation.CommonPasswordValidator.get_error_message': 'https://django.readthedocs.org/en/latest/topics/auth/passwords.html#django.contrib.auth.password_validation.CommonPasswordValidator.get_error_message',
'django.contrib.auth.password_validation.CommonPasswordValidator.get_help_text': 'https://django.readthedocs.org/en/latest/topics/auth/passwords.html#django.contrib.auth.password_validation.CommonPasswordValidator.get_help_text',
'django.contrib.auth.password_validation.MinimumLengthValidator': 'https://django.readthedocs.org/en/latest/topics/auth/passwords.html#django.contrib.auth.password_validation.MinimumLengthValidator',
'django.contrib.auth.password_validation.MinimumLengthValidator.get_error_message': 'https://django.readthedocs.org/en/latest/topics/auth/passwords.html#django.contrib.auth.password_validation.MinimumLengthValidator.get_error_message',
'django.contrib.auth.password_validation.MinimumLengthValidator.get_help_text': 'https://django.readthedocs.org/en/latest/topics/auth/passwords.html#django.contrib.auth.password_validation.MinimumLengthValidator.get_help_text',
'django.contrib.auth.password_validation.NumericPasswordValidator': 'https://django.readthedocs.org/en/latest/topics/auth/passwords.html#django.contrib.auth.password_validation.NumericPasswordValidator',
'django.contrib.auth.password_validation.NumericPasswordValidator.get_error_message': 'https://django.readthedocs.org/en/latest/topics/auth/passwords.html#django.contrib.auth.password_validation.NumericPasswordValidator.get_error_message',
'django.contrib.auth.password_validation.NumericPasswordValidator.get_help_text': 'https://django.readthedocs.org/en/latest/topics/auth/passwords.html#django.contrib.auth.password_validation.NumericPasswordValidator.get_help_text',
'django.contrib.auth.password_validation.UserAttributeSimilarityValidator': 'https://django.readthedocs.org/en/latest/topics/auth/passwords.html#django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
'django.contrib.auth.password_validation.UserAttributeSimilarityValidator.get_error_message': 'https://django.readthedocs.org/en/latest/topics/auth/passwords.html#django.contrib.auth.password_validation.UserAttributeSimilarityValidator.get_error_message',
'django.contrib.auth.password_validation.UserAttributeSimilarityValidator.get_help_text': 'https://django.readthedocs.org/en/latest/topics/auth/passwords.html#django.contrib.auth.password_validation.UserAttributeSimilarityValidator.get_help_text',
'django.contrib.auth.password_validation.get_password_validators': 'https://django.readthedocs.org/en/latest/topics/auth/passwords.html#django.contrib.auth.password_validation.get_password_validators',
'django.contrib.auth.password_validation.password_changed': 'https://django.readthedocs.org/en/latest/topics/auth/passwords.html#django.contrib.auth.password_validation.password_changed',
'django.contrib.auth.password_validation.password_validators_help_text_html': 'https://django.readthedocs.org/en/latest/topics/auth/passwords.html#django.contrib.auth.password_validation.password_validators_help_text_html',
'django.contrib.auth.password_validation.password_validators_help_texts': 'https://django.readthedocs.org/en/latest/topics/auth/passwords.html#django.contrib.auth.password_validation.password_validators_help_texts',
'django.contrib.auth.password_validation.validate_password': 'https://django.readthedocs.org/en/latest/topics/auth/passwords.html#django.contrib.auth.password_validation.validate_password'},
'django.contrib.auth.validators': { 'django.contrib.auth.validators.ASCIIUsernameValidator': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.validators.ASCIIUsernameValidator',
'django.contrib.auth.validators.UnicodeUsernameValidator': 'https://django.readthedocs.org/en/latest/ref/contrib/auth.html#django.contrib.auth.validators.UnicodeUsernameValidator'},
'django.contrib.auth.views': { 'django.contrib.auth.views.LoginView': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.views.LoginView',
'django.contrib.auth.views.LoginView.get_default_redirect_url': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.views.LoginView.get_default_redirect_url',
'django.contrib.auth.views.LogoutView': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.views.LogoutView',
'django.contrib.auth.views.PasswordChangeDoneView': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.views.PasswordChangeDoneView',
'django.contrib.auth.views.PasswordChangeView': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.views.PasswordChangeView',
'django.contrib.auth.views.PasswordResetCompleteView': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.views.PasswordResetCompleteView',
'django.contrib.auth.views.PasswordResetConfirmView': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.views.PasswordResetConfirmView',
'django.contrib.auth.views.PasswordResetDoneView': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.views.PasswordResetDoneView',
'django.contrib.auth.views.PasswordResetView': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.views.PasswordResetView',
'django.contrib.auth.views.logout_then_login': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.views.logout_then_login',
'django.contrib.auth.views.redirect_to_login': 'https://django.readthedocs.org/en/latest/topics/auth/default.html#django.contrib.auth.views.redirect_to_login'},
'django.contrib.contenttypes': { 'django.contrib.contenttypes.admin': 'https://django.readthedocs.org/en/latest/ref/contrib/contenttypes.html#module-django.contrib.contenttypes.admin',
'django.contrib.contenttypes.fields': 'https://django.readthedocs.org/en/latest/ref/contrib/contenttypes.html#module-django.contrib.contenttypes.fields',
'django.contrib.contenttypes.forms': 'https://django.readthedocs.org/en/latest/ref/contrib/contenttypes.html#module-django.contrib.contenttypes.forms',
'django.contrib.contenttypes.prefetch': 'https://django.readthedocs.org/en/latest/ref/contrib/contenttypes.html#module-django.contrib.contenttypes.prefetch'},
'django.contrib.contenttypes.admin': { 'django.contrib.contenttypes.admin.GenericInlineModelAdmin': 'https://django.readthedocs.org/en/latest/ref/contrib/contenttypes.html#django.contrib.contenttypes.admin.GenericInlineModelAdmin',
'django.contrib.contenttypes.admin.GenericStackedInline': 'https://django.readthedocs.org/en/latest/ref/contrib/contenttypes.html#django.contrib.contenttypes.admin.GenericStackedInline',
'django.contrib.contenttypes.admin.GenericTabularInline': 'https://django.readthedocs.org/en/latest/ref/contrib/contenttypes.html#django.contrib.contenttypes.admin.GenericTabularInline'},
'django.contrib.contenttypes.fields': { 'django.contrib.contenttypes.fields.GenericForeignKey': 'https://django.readthedocs.org/en/latest/ref/contrib/contenttypes.html#django.contrib.contenttypes.fields.GenericForeignKey',
'django.contrib.contenttypes.fields.GenericRelation': 'https://django.readthedocs.org/en/latest/ref/contrib/contenttypes.html#django.contrib.contenttypes.fields.GenericRelation'},
'django.contrib.contenttypes.forms': { 'django.contrib.contenttypes.forms.BaseGenericInlineFormSet': 'https://django.readthedocs.org/en/latest/ref/contrib/contenttypes.html#django.contrib.contenttypes.forms.BaseGenericInlineFormSet',
'django.contrib.contenttypes.forms.generic_inlineformset_factory': 'https://django.readthedocs.org/en/latest/ref/contrib/contenttypes.html#django.contrib.contenttypes.forms.generic_inlineformset_factory'},
'django.contrib.contenttypes.models': { 'django.contrib.contenttypes.models.ContentType': 'https://django.readthedocs.org/en/latest/ref/contrib/contenttypes.html#django.contrib.contenttypes.models.ContentType',
'django.contrib.contenttypes.models.ContentType.get_object_for_this_type': 'https://django.readthedocs.org/en/latest/ref/contrib/contenttypes.html#django.contrib.contenttypes.models.ContentType.get_object_for_this_type',
'django.contrib.contenttypes.models.ContentType.model_class': 'https://django.readthedocs.org/en/latest/ref/contrib/contenttypes.html#django.contrib.contenttypes.models.ContentType.model_class',
'django.contrib.contenttypes.models.ContentTypeManager': 'https://django.readthedocs.org/en/latest/ref/contrib/contenttypes.html#django.contrib.contenttypes.models.ContentTypeManager',
'django.contrib.contenttypes.models.ContentTypeManager.clear_cache': 'https://django.readthedocs.org/en/latest/ref/contrib/contenttypes.html#django.contrib.contenttypes.models.ContentTypeManager.clear_cache',
'django.contrib.contenttypes.models.ContentTypeManager.get_by_natural_key': 'https://django.readthedocs.org/en/latest/ref/contrib/contenttypes.html#django.contrib.contenttypes.models.ContentTypeManager.get_by_natural_key',
'django.contrib.contenttypes.models.ContentTypeManager.get_for_id': 'https://django.readthedocs.org/en/latest/ref/contrib/contenttypes.html#django.contrib.contenttypes.models.ContentTypeManager.get_for_id',
'django.contrib.contenttypes.models.ContentTypeManager.get_for_model': 'https://django.readthedocs.org/en/latest/ref/contrib/contenttypes.html#django.contrib.contenttypes.models.ContentTypeManager.get_for_model',
'django.contrib.contenttypes.models.ContentTypeManager.get_for_models': 'https://django.readthedocs.org/en/latest/ref/contrib/contenttypes.html#django.contrib.contenttypes.models.ContentTypeManager.get_for_models'},
'django.contrib.contenttypes.prefetch': { 'django.contrib.contenttypes.prefetch.GenericPrefetch': 'https://django.readthedocs.org/en/latest/ref/contrib/contenttypes.html#django.contrib.contenttypes.prefetch.GenericPrefetch'},
'django.contrib.flatpages.middleware': { 'django.contrib.flatpages.middleware.FlatpageFallbackMiddleware': 'https://django.readthedocs.org/en/latest/ref/contrib/flatpages.html#django.contrib.flatpages.middleware.FlatpageFallbackMiddleware'},
'django.contrib.flatpages.models': { 'django.contrib.flatpages.models.FlatPage': 'https://django.readthedocs.org/en/latest/ref/contrib/flatpages.html#django.contrib.flatpages.models.FlatPage'},
'django.contrib.flatpages.sitemaps': { 'django.contrib.flatpages.sitemaps.FlatPageSitemap': 'https://django.readthedocs.org/en/latest/ref/contrib/flatpages.html#django.contrib.flatpages.sitemaps.FlatPageSitemap'},
'django.contrib.gis': { 'django.contrib.gis.admin': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/admin.html#module-django.contrib.gis.admin',
'django.contrib.gis.feeds': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/feeds.html#module-django.contrib.gis.feeds',
'django.contrib.gis.forms': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/forms-api.html#module-django.contrib.gis.forms',
'django.contrib.gis.gdal': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#module-django.contrib.gis.gdal',
'django.contrib.gis.geoip2': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geoip2.html#module-django.contrib.gis.geoip2',
'django.contrib.gis.geos': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#module-django.contrib.gis.geos',
'django.contrib.gis.measure': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/measure.html#module-django.contrib.gis.measure',
'django.contrib.gis.utils': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/utils.html#module-django.contrib.gis.utils'},
'django.contrib.gis.admin': { 'django.contrib.gis.admin.GISModelAdmin': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/admin.html#django.contrib.gis.admin.GISModelAdmin'},
'django.contrib.gis.db': { 'django.contrib.gis.db.backends': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/db-api.html#module-django.contrib.gis.db.backends',
'django.contrib.gis.db.models': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/model-api.html#module-django.contrib.gis.db.models'},
'django.contrib.gis.db.models': { 'django.contrib.gis.db.models.Collect': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geoquerysets.html#django.contrib.gis.db.models.Collect',
'django.contrib.gis.db.models.Extent': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geoquerysets.html#django.contrib.gis.db.models.Extent',
'django.contrib.gis.db.models.Extent3D': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geoquerysets.html#django.contrib.gis.db.models.Extent3D',
'django.contrib.gis.db.models.GeometryCollectionField': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/model-api.html#django.contrib.gis.db.models.GeometryCollectionField',
'django.contrib.gis.db.models.GeometryField': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/model-api.html#django.contrib.gis.db.models.GeometryField',
'django.contrib.gis.db.models.LineStringField': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/model-api.html#django.contrib.gis.db.models.LineStringField',
'django.contrib.gis.db.models.MakeLine': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geoquerysets.html#django.contrib.gis.db.models.MakeLine',
'django.contrib.gis.db.models.MultiLineStringField': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/model-api.html#django.contrib.gis.db.models.MultiLineStringField',
'django.contrib.gis.db.models.MultiPointField': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/model-api.html#django.contrib.gis.db.models.MultiPointField',
'django.contrib.gis.db.models.MultiPolygonField': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/model-api.html#django.contrib.gis.db.models.MultiPolygonField',
'django.contrib.gis.db.models.PointField': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/model-api.html#django.contrib.gis.db.models.PointField',
'django.contrib.gis.db.models.PolygonField': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/model-api.html#django.contrib.gis.db.models.PolygonField',
'django.contrib.gis.db.models.RasterField': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/model-api.html#django.contrib.gis.db.models.RasterField',
'django.contrib.gis.db.models.Union': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geoquerysets.html#django.contrib.gis.db.models.Union',
'django.contrib.gis.db.models.functions': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#module-django.contrib.gis.db.models.functions'},
'django.contrib.gis.db.models.functions': { 'django.contrib.gis.db.models.functions.Area': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.Area',
'django.contrib.gis.db.models.functions.AsGML': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.AsGML',
'django.contrib.gis.db.models.functions.AsGeoJSON': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.AsGeoJSON',
'django.contrib.gis.db.models.functions.AsKML': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.AsKML',
'django.contrib.gis.db.models.functions.AsSVG': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.AsSVG',
'django.contrib.gis.db.models.functions.AsWKB': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.AsWKB',
'django.contrib.gis.db.models.functions.AsWKT': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.AsWKT',
'django.contrib.gis.db.models.functions.Azimuth': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.Azimuth',
'django.contrib.gis.db.models.functions.BoundingCircle': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.BoundingCircle',
'django.contrib.gis.db.models.functions.Centroid': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.Centroid',
'django.contrib.gis.db.models.functions.ClosestPoint': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.ClosestPoint',
'django.contrib.gis.db.models.functions.Difference': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.Difference',
'django.contrib.gis.db.models.functions.Distance': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.Distance',
'django.contrib.gis.db.models.functions.Envelope': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.Envelope',
'django.contrib.gis.db.models.functions.ForcePolygonCW': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.ForcePolygonCW',
'django.contrib.gis.db.models.functions.FromWKB': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.FromWKB',
'django.contrib.gis.db.models.functions.FromWKT': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.FromWKT',
'django.contrib.gis.db.models.functions.GeoHash': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.GeoHash',
'django.contrib.gis.db.models.functions.GeometryDistance': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.GeometryDistance',
'django.contrib.gis.db.models.functions.Intersection': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.Intersection',
'django.contrib.gis.db.models.functions.IsEmpty': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.IsEmpty',
'django.contrib.gis.db.models.functions.IsValid': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.IsValid',
'django.contrib.gis.db.models.functions.Length': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.Length',
'django.contrib.gis.db.models.functions.LineLocatePoint': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.LineLocatePoint',
'django.contrib.gis.db.models.functions.MakeValid': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.MakeValid',
'django.contrib.gis.db.models.functions.MemSize': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.MemSize',
'django.contrib.gis.db.models.functions.NumGeometries': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.NumGeometries',
'django.contrib.gis.db.models.functions.NumPoints': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.NumPoints',
'django.contrib.gis.db.models.functions.Perimeter': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.Perimeter',
'django.contrib.gis.db.models.functions.PointOnSurface': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.PointOnSurface',
'django.contrib.gis.db.models.functions.Reverse': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.Reverse',
'django.contrib.gis.db.models.functions.Rotate': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.Rotate',
'django.contrib.gis.db.models.functions.Scale': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.Scale',
'django.contrib.gis.db.models.functions.SnapToGrid': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.SnapToGrid',
'django.contrib.gis.db.models.functions.SymDifference': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.SymDifference',
'django.contrib.gis.db.models.functions.Transform': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.Transform',
'django.contrib.gis.db.models.functions.Translate': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.Translate',
'django.contrib.gis.db.models.functions.Union': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/functions.html#django.contrib.gis.db.models.functions.Union'},
'django.contrib.gis.feeds': { 'django.contrib.gis.feeds.Feed': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/feeds.html#django.contrib.gis.feeds.Feed',
'django.contrib.gis.feeds.Feed.geometry': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/feeds.html#django.contrib.gis.feeds.Feed.geometry',
'django.contrib.gis.feeds.Feed.item_geometry': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/feeds.html#django.contrib.gis.feeds.Feed.item_geometry',
'django.contrib.gis.feeds.GeoAtom1Feed': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/feeds.html#django.contrib.gis.feeds.GeoAtom1Feed',
'django.contrib.gis.feeds.GeoRSSFeed': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/feeds.html#django.contrib.gis.feeds.GeoRSSFeed',
'django.contrib.gis.feeds.W3CGeoFeed': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/feeds.html#django.contrib.gis.feeds.W3CGeoFeed'},
'django.contrib.gis.forms': { 'django.contrib.gis.forms.GeometryCollectionField': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/forms-api.html#django.contrib.gis.forms.GeometryCollectionField',
'django.contrib.gis.forms.GeometryField': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/forms-api.html#django.contrib.gis.forms.GeometryField',
'django.contrib.gis.forms.LineStringField': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/forms-api.html#django.contrib.gis.forms.LineStringField',
'django.contrib.gis.forms.MultiLineStringField': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/forms-api.html#django.contrib.gis.forms.MultiLineStringField',
'django.contrib.gis.forms.MultiPointField': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/forms-api.html#django.contrib.gis.forms.MultiPointField',
'django.contrib.gis.forms.MultiPolygonField': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/forms-api.html#django.contrib.gis.forms.MultiPolygonField',
'django.contrib.gis.forms.PointField': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/forms-api.html#django.contrib.gis.forms.PointField',
'django.contrib.gis.forms.PolygonField': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/forms-api.html#django.contrib.gis.forms.PolygonField',
'django.contrib.gis.forms.widgets': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/forms-api.html#module-django.contrib.gis.forms.widgets'},
'django.contrib.gis.forms.widgets': { 'django.contrib.gis.forms.widgets.BaseGeometryWidget': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/forms-api.html#django.contrib.gis.forms.widgets.BaseGeometryWidget',
'django.contrib.gis.forms.widgets.OSMWidget': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/forms-api.html#django.contrib.gis.forms.widgets.OSMWidget',
'django.contrib.gis.forms.widgets.OpenLayersWidget': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/forms-api.html#django.contrib.gis.forms.widgets.OpenLayersWidget'},
'django.contrib.gis.gdal': { 'django.contrib.gis.gdal.CoordTransform': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.CoordTransform',
'django.contrib.gis.gdal.DataSource': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.DataSource',
'django.contrib.gis.gdal.Driver': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.Driver',
'django.contrib.gis.gdal.Envelope': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.Envelope',
'django.contrib.gis.gdal.Envelope.expand_to_include': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.Envelope.expand_to_include',
'django.contrib.gis.gdal.Feature': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.Feature',
'django.contrib.gis.gdal.Field': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.Field',
'django.contrib.gis.gdal.Field.as_datetime': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.Field.as_datetime',
'django.contrib.gis.gdal.Field.as_double': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.Field.as_double',
'django.contrib.gis.gdal.Field.as_int': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.Field.as_int',
'django.contrib.gis.gdal.Field.as_string': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.Field.as_string',
'django.contrib.gis.gdal.GDALBand': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.GDALBand',
'django.contrib.gis.gdal.GDALBand.color_interp': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.GDALBand.color_interp',
'django.contrib.gis.gdal.GDALBand.data': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.GDALBand.data',
'django.contrib.gis.gdal.GDALBand.datatype': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.GDALBand.datatype',
'django.contrib.gis.gdal.GDALBand.statistics': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.GDALBand.statistics',
'django.contrib.gis.gdal.GDALRaster': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.GDALRaster',
'django.contrib.gis.gdal.GDALRaster.transform': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.GDALRaster.transform',
'django.contrib.gis.gdal.GDALRaster.warp': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.GDALRaster.warp',
'django.contrib.gis.gdal.GeometryCollection': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.GeometryCollection',
'django.contrib.gis.gdal.GeometryCollection.add': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.GeometryCollection.add',
'django.contrib.gis.gdal.Layer': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.Layer',
'django.contrib.gis.gdal.Layer.get_fields': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.Layer.get_fields',
'django.contrib.gis.gdal.Layer.get_geoms': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.Layer.get_geoms',
'django.contrib.gis.gdal.Layer.test_capability': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.Layer.test_capability',
'django.contrib.gis.gdal.LineString': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.LineString',
'django.contrib.gis.gdal.OGRGeomType': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.OGRGeomType',
'django.contrib.gis.gdal.OGRGeometry': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.OGRGeometry',
'django.contrib.gis.gdal.OGRGeometry.__getitem__': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.OGRGeometry.__getitem__',
'django.contrib.gis.gdal.OGRGeometry.__iter__': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.OGRGeometry.__iter__',
'django.contrib.gis.gdal.OGRGeometry.__len__': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.OGRGeometry.__len__',
'django.contrib.gis.gdal.OGRGeometry.boundary': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.OGRGeometry.boundary',
'django.contrib.gis.gdal.OGRGeometry.clone': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.OGRGeometry.clone',
'django.contrib.gis.gdal.OGRGeometry.close_rings': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.OGRGeometry.close_rings',
'django.contrib.gis.gdal.OGRGeometry.contains': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.OGRGeometry.contains',
'django.contrib.gis.gdal.OGRGeometry.crosses': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.OGRGeometry.crosses',
'django.contrib.gis.gdal.OGRGeometry.difference': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.OGRGeometry.difference',
'django.contrib.gis.gdal.OGRGeometry.disjoint': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.OGRGeometry.disjoint',
'django.contrib.gis.gdal.OGRGeometry.equals': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.OGRGeometry.equals',
'django.contrib.gis.gdal.OGRGeometry.from_bbox': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.OGRGeometry.from_bbox',
'django.contrib.gis.gdal.OGRGeometry.from_gml': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.OGRGeometry.from_gml',
'django.contrib.gis.gdal.OGRGeometry.get_curve_geometry': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.OGRGeometry.get_curve_geometry',
'django.contrib.gis.gdal.OGRGeometry.get_linear_geometry': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.OGRGeometry.get_linear_geometry',
'django.contrib.gis.gdal.OGRGeometry.intersection': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.OGRGeometry.intersection',
'django.contrib.gis.gdal.OGRGeometry.intersects': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.OGRGeometry.intersects',
'django.contrib.gis.gdal.OGRGeometry.overlaps': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.OGRGeometry.overlaps',
'django.contrib.gis.gdal.OGRGeometry.set_3d': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.OGRGeometry.set_3d',
'django.contrib.gis.gdal.OGRGeometry.set_measured': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.OGRGeometry.set_measured',
'django.contrib.gis.gdal.OGRGeometry.sym_difference': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.OGRGeometry.sym_difference',
'django.contrib.gis.gdal.OGRGeometry.touches': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.OGRGeometry.touches',
'django.contrib.gis.gdal.OGRGeometry.transform': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.OGRGeometry.transform',
'django.contrib.gis.gdal.OGRGeometry.union': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.OGRGeometry.union',
'django.contrib.gis.gdal.OGRGeometry.within': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.OGRGeometry.within',
'django.contrib.gis.gdal.Point': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.Point',
'django.contrib.gis.gdal.Polygon': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.Polygon',
'django.contrib.gis.gdal.SpatialReference': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.SpatialReference',
'django.contrib.gis.gdal.SpatialReference.__getitem__': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.SpatialReference.__getitem__',
'django.contrib.gis.gdal.SpatialReference.attr_value': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.SpatialReference.attr_value',
'django.contrib.gis.gdal.SpatialReference.auth_code': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.SpatialReference.auth_code',
'django.contrib.gis.gdal.SpatialReference.auth_name': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.SpatialReference.auth_name',
'django.contrib.gis.gdal.SpatialReference.clone': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.SpatialReference.clone',
'django.contrib.gis.gdal.SpatialReference.from_esri': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.SpatialReference.from_esri',
'django.contrib.gis.gdal.SpatialReference.identify_epsg': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.SpatialReference.identify_epsg',
'django.contrib.gis.gdal.SpatialReference.import_epsg': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.SpatialReference.import_epsg',
'django.contrib.gis.gdal.SpatialReference.import_proj': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.SpatialReference.import_proj',
'django.contrib.gis.gdal.SpatialReference.import_user_input': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.SpatialReference.import_user_input',
'django.contrib.gis.gdal.SpatialReference.import_wkt': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.SpatialReference.import_wkt',
'django.contrib.gis.gdal.SpatialReference.import_xml': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.SpatialReference.import_xml',
'django.contrib.gis.gdal.SpatialReference.to_esri': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.SpatialReference.to_esri',
'django.contrib.gis.gdal.SpatialReference.validate': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/gdal.html#django.contrib.gis.gdal.SpatialReference.validate'},
'django.contrib.gis.geoip2': { 'django.contrib.gis.geoip2.GeoIP2': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geoip2.html#django.contrib.gis.geoip2.GeoIP2',
'django.contrib.gis.geoip2.GeoIP2.city': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geoip2.html#django.contrib.gis.geoip2.GeoIP2.city',
'django.contrib.gis.geoip2.GeoIP2.country': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geoip2.html#django.contrib.gis.geoip2.GeoIP2.country',
'django.contrib.gis.geoip2.GeoIP2.country_code': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geoip2.html#django.contrib.gis.geoip2.GeoIP2.country_code',
'django.contrib.gis.geoip2.GeoIP2.country_name': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geoip2.html#django.contrib.gis.geoip2.GeoIP2.country_name',
'django.contrib.gis.geoip2.GeoIP2.geos': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geoip2.html#django.contrib.gis.geoip2.GeoIP2.geos',
'django.contrib.gis.geoip2.GeoIP2.lat_lon': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geoip2.html#django.contrib.gis.geoip2.GeoIP2.lat_lon',
'django.contrib.gis.geoip2.GeoIP2.lon_lat': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geoip2.html#django.contrib.gis.geoip2.GeoIP2.lon_lat'},
'django.contrib.gis.geos': { 'django.contrib.gis.geos.GEOSGeometry': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry',
'django.contrib.gis.geos.GEOSGeometry.buffer': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.buffer',
'django.contrib.gis.geos.GEOSGeometry.buffer_with_style': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.buffer_with_style',
'django.contrib.gis.geos.GEOSGeometry.clone': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.clone',
'django.contrib.gis.geos.GEOSGeometry.contains': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.contains',
'django.contrib.gis.geos.GEOSGeometry.covers': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.covers',
'django.contrib.gis.geos.GEOSGeometry.crosses': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.crosses',
'django.contrib.gis.geos.GEOSGeometry.difference': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.difference',
'django.contrib.gis.geos.GEOSGeometry.disjoint': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.disjoint',
'django.contrib.gis.geos.GEOSGeometry.distance': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.distance',
'django.contrib.gis.geos.GEOSGeometry.equals': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.equals',
'django.contrib.gis.geos.GEOSGeometry.equals_exact': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.equals_exact',
'django.contrib.gis.geos.GEOSGeometry.equals_identical': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.equals_identical',
'django.contrib.gis.geos.GEOSGeometry.from_gml': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.from_gml',
'django.contrib.gis.geos.GEOSGeometry.interpolate': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.interpolate',
'django.contrib.gis.geos.GEOSGeometry.interpolate_normalized': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.interpolate_normalized',
'django.contrib.gis.geos.GEOSGeometry.intersection': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.intersection',
'django.contrib.gis.geos.GEOSGeometry.intersects': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.intersects',
'django.contrib.gis.geos.GEOSGeometry.make_valid': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.make_valid',
'django.contrib.gis.geos.GEOSGeometry.normalize': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.normalize',
'django.contrib.gis.geos.GEOSGeometry.overlaps': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.overlaps',
'django.contrib.gis.geos.GEOSGeometry.project': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.project',
'django.contrib.gis.geos.GEOSGeometry.project_normalized': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.project_normalized',
'django.contrib.gis.geos.GEOSGeometry.relate': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.relate',
'django.contrib.gis.geos.GEOSGeometry.relate_pattern': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.relate_pattern',
'django.contrib.gis.geos.GEOSGeometry.simplify': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.simplify',
'django.contrib.gis.geos.GEOSGeometry.sym_difference': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.sym_difference',
'django.contrib.gis.geos.GEOSGeometry.touches': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.touches',
'django.contrib.gis.geos.GEOSGeometry.transform': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.transform',
'django.contrib.gis.geos.GEOSGeometry.union': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.union',
'django.contrib.gis.geos.GEOSGeometry.within': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GEOSGeometry.within',
'django.contrib.gis.geos.GeometryCollection': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.GeometryCollection',
'django.contrib.gis.geos.LineString': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.LineString',
'django.contrib.gis.geos.LinearRing': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.LinearRing',
'django.contrib.gis.geos.MultiLineString': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.MultiLineString',
'django.contrib.gis.geos.MultiPoint': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.MultiPoint',
'django.contrib.gis.geos.MultiPolygon': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.MultiPolygon',
'django.contrib.gis.geos.Point': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.Point',
'django.contrib.gis.geos.Polygon': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.Polygon',
'django.contrib.gis.geos.Polygon.from_bbox': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.Polygon.from_bbox',
'django.contrib.gis.geos.PreparedGeometry': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.PreparedGeometry',
'django.contrib.gis.geos.PreparedGeometry.contains': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.PreparedGeometry.contains',
'django.contrib.gis.geos.PreparedGeometry.contains_properly': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.PreparedGeometry.contains_properly',
'django.contrib.gis.geos.PreparedGeometry.covers': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.PreparedGeometry.covers',
'django.contrib.gis.geos.PreparedGeometry.crosses': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.PreparedGeometry.crosses',
'django.contrib.gis.geos.PreparedGeometry.disjoint': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.PreparedGeometry.disjoint',
'django.contrib.gis.geos.PreparedGeometry.intersects': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.PreparedGeometry.intersects',
'django.contrib.gis.geos.PreparedGeometry.overlaps': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.PreparedGeometry.overlaps',
'django.contrib.gis.geos.PreparedGeometry.touches': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.PreparedGeometry.touches',
'django.contrib.gis.geos.PreparedGeometry.within': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.PreparedGeometry.within',
'django.contrib.gis.geos.WKBReader': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.WKBReader',
'django.contrib.gis.geos.WKBWriter': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.WKBWriter',
'django.contrib.gis.geos.WKBWriter.write': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.WKBWriter.write',
'django.contrib.gis.geos.WKBWriter.write_hex': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.WKBWriter.write_hex',
'django.contrib.gis.geos.WKTReader': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.WKTReader',
'django.contrib.gis.geos.WKTWriter': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.WKTWriter',
'django.contrib.gis.geos.WKTWriter.write': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.WKTWriter.write',
'django.contrib.gis.geos.fromfile': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.fromfile',
'django.contrib.gis.geos.fromstr': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/geos.html#django.contrib.gis.geos.fromstr'},
'django.contrib.gis.measure': { 'django.contrib.gis.measure.A': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/measure.html#django.contrib.gis.measure.A',
'django.contrib.gis.measure.Area': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/measure.html#django.contrib.gis.measure.Area',
'django.contrib.gis.measure.Area.__getattr__': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/measure.html#django.contrib.gis.measure.Area.__getattr__',
'django.contrib.gis.measure.Area.unit_attname': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/measure.html#django.contrib.gis.measure.Area.unit_attname',
'django.contrib.gis.measure.D': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/measure.html#django.contrib.gis.measure.D',
'django.contrib.gis.measure.Distance': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/measure.html#django.contrib.gis.measure.Distance',
'django.contrib.gis.measure.Distance.__getattr__': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/measure.html#django.contrib.gis.measure.Distance.__getattr__',
'django.contrib.gis.measure.Distance.unit_attname': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/measure.html#django.contrib.gis.measure.Distance.unit_attname'},
'django.contrib.gis.serializers': { 'django.contrib.gis.serializers.geojson': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/serializers.html#module-django.contrib.gis.serializers.geojson'},
'django.contrib.gis.utils': { 'django.contrib.gis.utils.LayerMapping': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/layermapping.html#django.contrib.gis.utils.LayerMapping',
'django.contrib.gis.utils.LayerMapping.save': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/layermapping.html#django.contrib.gis.utils.LayerMapping.save',
'django.contrib.gis.utils.layermapping': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/layermapping.html#module-django.contrib.gis.utils.layermapping',
'django.contrib.gis.utils.mapping': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/ogrinspect.html#django.contrib.gis.utils.mapping',
'django.contrib.gis.utils.ogrinspect': 'https://django.readthedocs.org/en/latest/ref/contrib/gis/ogrinspect.html#module-django.contrib.gis.utils.ogrinspect'},
'django.contrib.messages': { 'django.contrib.messages.Message': 'https://django.readthedocs.org/en/latest/ref/contrib/messages.html#django.contrib.messages.Message',
'django.contrib.messages.add_message': 'https://django.readthedocs.org/en/latest/ref/contrib/messages.html#django.contrib.messages.add_message',
'django.contrib.messages.get_messages': 'https://django.readthedocs.org/en/latest/ref/contrib/messages.html#django.contrib.messages.get_messages',
'django.contrib.messages.middleware': 'https://django.readthedocs.org/en/latest/ref/middleware.html#module-django.contrib.messages.middleware',
'django.contrib.messages.test': 'https://django.readthedocs.org/en/latest/ref/contrib/messages.html#module-django.contrib.messages.test'},
'django.contrib.messages.middleware': { 'django.contrib.messages.middleware.MessageMiddleware': 'https://django.readthedocs.org/en/latest/ref/middleware.html#django.contrib.messages.middleware.MessageMiddleware'},
'django.contrib.messages.storage.base': { 'django.contrib.messages.storage.base.BaseStorage': 'https://django.readthedocs.org/en/latest/ref/contrib/messages.html#django.contrib.messages.storage.base.BaseStorage'},
'django.contrib.messages.storage.cookie': { 'django.contrib.messages.storage.cookie.CookieStorage': 'https://django.readthedocs.org/en/latest/ref/contrib/messages.html#django.contrib.messages.storage.cookie.CookieStorage'},
'django.contrib.messages.storage.fallback': { 'django.contrib.messages.storage.fallback.FallbackStorage': 'https://django.readthedocs.org/en/latest/ref/contrib/messages.html#django.contrib.messages.storage.fallback.FallbackStorage'},
'django.contrib.messages.storage.session': { 'django.contrib.messages.storage.session.SessionStorage': 'https://django.readthedocs.org/en/latest/ref/contrib/messages.html#django.contrib.messages.storage.session.SessionStorage'},
'django.contrib.messages.test': { 'django.contrib.messages.test.MessagesTestMixin.assertMessages': 'https://django.readthedocs.org/en/latest/ref/contrib/messages.html#django.contrib.messages.test.MessagesTestMixin.assertMessages'},
'django.contrib.messages.views': { 'django.contrib.messages.views.SuccessMessageMixin': 'https://django.readthedocs.org/en/latest/ref/contrib/messages.html#django.contrib.messages.views.SuccessMessageMixin',
'django.contrib.messages.views.SuccessMessageMixin.get_success_message': 'https://django.readthedocs.org/en/latest/ref/contrib/messages.html#django.contrib.messages.views.SuccessMessageMixin.get_success_message'},
'django.contrib.postgres': { 'django.contrib.postgres.aggregates': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/aggregates.html#module-django.contrib.postgres.aggregates',
'django.contrib.postgres.constraints': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/constraints.html#module-django.contrib.postgres.constraints',
'django.contrib.postgres.expressions': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/expressions.html#module-django.contrib.postgres.expressions',
'django.contrib.postgres.indexes': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/indexes.html#module-django.contrib.postgres.indexes',
'django.contrib.postgres.validators': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/validators.html#module-django.contrib.postgres.validators'},
'django.contrib.postgres.aggregates': { 'django.contrib.postgres.aggregates.ArrayAgg': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/aggregates.html#django.contrib.postgres.aggregates.ArrayAgg',
'django.contrib.postgres.aggregates.BitAnd': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/aggregates.html#django.contrib.postgres.aggregates.BitAnd',
'django.contrib.postgres.aggregates.BitOr': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/aggregates.html#django.contrib.postgres.aggregates.BitOr',
'django.contrib.postgres.aggregates.BitXor': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/aggregates.html#django.contrib.postgres.aggregates.BitXor',
'django.contrib.postgres.aggregates.BoolAnd': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/aggregates.html#django.contrib.postgres.aggregates.BoolAnd',
'django.contrib.postgres.aggregates.BoolOr': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/aggregates.html#django.contrib.postgres.aggregates.BoolOr',
'django.contrib.postgres.aggregates.Corr': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/aggregates.html#django.contrib.postgres.aggregates.Corr',
'django.contrib.postgres.aggregates.CovarPop': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/aggregates.html#django.contrib.postgres.aggregates.CovarPop',
'django.contrib.postgres.aggregates.JSONBAgg': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/aggregates.html#django.contrib.postgres.aggregates.JSONBAgg',
'django.contrib.postgres.aggregates.RegrAvgX': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/aggregates.html#django.contrib.postgres.aggregates.RegrAvgX',
'django.contrib.postgres.aggregates.RegrAvgY': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/aggregates.html#django.contrib.postgres.aggregates.RegrAvgY',
'django.contrib.postgres.aggregates.RegrCount': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/aggregates.html#django.contrib.postgres.aggregates.RegrCount',
'django.contrib.postgres.aggregates.RegrIntercept': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/aggregates.html#django.contrib.postgres.aggregates.RegrIntercept',
'django.contrib.postgres.aggregates.RegrR2': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/aggregates.html#django.contrib.postgres.aggregates.RegrR2',
'django.contrib.postgres.aggregates.RegrSXX': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/aggregates.html#django.contrib.postgres.aggregates.RegrSXX',
'django.contrib.postgres.aggregates.RegrSXY': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/aggregates.html#django.contrib.postgres.aggregates.RegrSXY',
'django.contrib.postgres.aggregates.RegrSYY': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/aggregates.html#django.contrib.postgres.aggregates.RegrSYY',
'django.contrib.postgres.aggregates.RegrSlope': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/aggregates.html#django.contrib.postgres.aggregates.RegrSlope',
'django.contrib.postgres.aggregates.StringAgg': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/aggregates.html#django.contrib.postgres.aggregates.StringAgg'},
'django.contrib.postgres.constraints': { 'django.contrib.postgres.constraints.ExclusionConstraint': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/constraints.html#django.contrib.postgres.constraints.ExclusionConstraint'},
'django.contrib.postgres.expressions': { 'django.contrib.postgres.expressions.ArraySubquery': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/expressions.html#django.contrib.postgres.expressions.ArraySubquery'},
'django.contrib.postgres.fields': { 'django.contrib.postgres.fields.ArrayField': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/fields.html#django.contrib.postgres.fields.ArrayField',
'django.contrib.postgres.fields.BigIntegerRangeField': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/fields.html#django.contrib.postgres.fields.BigIntegerRangeField',
'django.contrib.postgres.fields.DateRangeField': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/fields.html#django.contrib.postgres.fields.DateRangeField',
'django.contrib.postgres.fields.DateTimeRangeField': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/fields.html#django.contrib.postgres.fields.DateTimeRangeField',
'django.contrib.postgres.fields.DecimalRangeField': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/fields.html#django.contrib.postgres.fields.DecimalRangeField',
'django.contrib.postgres.fields.HStoreField': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/fields.html#django.contrib.postgres.fields.HStoreField',
'django.contrib.postgres.fields.IntegerRangeField': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/fields.html#django.contrib.postgres.fields.IntegerRangeField',
'django.contrib.postgres.fields.RangeBoundary': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/fields.html#django.contrib.postgres.fields.RangeBoundary',
'django.contrib.postgres.fields.RangeField': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/fields.html#django.contrib.postgres.fields.RangeField',
'django.contrib.postgres.fields.RangeOperators': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/fields.html#django.contrib.postgres.fields.RangeOperators'},
'django.contrib.postgres.fields.django.contrib.postgres.forms': { 'django.contrib.postgres.fields.django.contrib.postgres.forms.BaseRangeField': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/fields.html#django.contrib.postgres.fields.django.contrib.postgres.forms.BaseRangeField'},
'django.contrib.postgres.forms': { 'django.contrib.postgres.forms.DateRangeField': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/forms.html#django.contrib.postgres.forms.DateRangeField',
'django.contrib.postgres.forms.DateTimeRangeField': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/forms.html#django.contrib.postgres.forms.DateTimeRangeField',
'django.contrib.postgres.forms.DecimalRangeField': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/forms.html#django.contrib.postgres.forms.DecimalRangeField',
'django.contrib.postgres.forms.HStoreField': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/forms.html#django.contrib.postgres.forms.HStoreField',
'django.contrib.postgres.forms.IntegerRangeField': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/forms.html#django.contrib.postgres.forms.IntegerRangeField',
'django.contrib.postgres.forms.RangeWidget': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/forms.html#django.contrib.postgres.forms.RangeWidget',
'django.contrib.postgres.forms.RangeWidget.decompress': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/forms.html#django.contrib.postgres.forms.RangeWidget.decompress',
'django.contrib.postgres.forms.SimpleArrayField': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/forms.html#django.contrib.postgres.forms.SimpleArrayField',
'django.contrib.postgres.forms.SplitArrayField': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/forms.html#django.contrib.postgres.forms.SplitArrayField'},
'django.contrib.postgres.functions': { 'django.contrib.postgres.functions.RandomUUID': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/functions.html#django.contrib.postgres.functions.RandomUUID',
'django.contrib.postgres.functions.TransactionNow': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/functions.html#django.contrib.postgres.functions.TransactionNow'},
'django.contrib.postgres.indexes': { 'django.contrib.postgres.indexes.BTreeIndex': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/indexes.html#django.contrib.postgres.indexes.BTreeIndex',
'django.contrib.postgres.indexes.BloomIndex': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/indexes.html#django.contrib.postgres.indexes.BloomIndex',
'django.contrib.postgres.indexes.BrinIndex': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/indexes.html#django.contrib.postgres.indexes.BrinIndex',
'django.contrib.postgres.indexes.GinIndex': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/indexes.html#django.contrib.postgres.indexes.GinIndex',
'django.contrib.postgres.indexes.GistIndex': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/indexes.html#django.contrib.postgres.indexes.GistIndex',
'django.contrib.postgres.indexes.HashIndex': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/indexes.html#django.contrib.postgres.indexes.HashIndex',
'django.contrib.postgres.indexes.OpClass': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/indexes.html#django.contrib.postgres.indexes.OpClass',
'django.contrib.postgres.indexes.SpGistIndex': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/indexes.html#django.contrib.postgres.indexes.SpGistIndex'},
'django.contrib.postgres.operations': { 'django.contrib.postgres.operations.AddConstraintNotValid': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/operations.html#django.contrib.postgres.operations.AddConstraintNotValid',
'django.contrib.postgres.operations.AddIndexConcurrently': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/operations.html#django.contrib.postgres.operations.AddIndexConcurrently',
'django.contrib.postgres.operations.BloomExtension': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/operations.html#django.contrib.postgres.operations.BloomExtension',
'django.contrib.postgres.operations.BtreeGinExtension': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/operations.html#django.contrib.postgres.operations.BtreeGinExtension',
'django.contrib.postgres.operations.BtreeGistExtension': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/operations.html#django.contrib.postgres.operations.BtreeGistExtension',
'django.contrib.postgres.operations.CITextExtension': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/operations.html#django.contrib.postgres.operations.CITextExtension',
'django.contrib.postgres.operations.CreateCollation': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/operations.html#django.contrib.postgres.operations.CreateCollation',
'django.contrib.postgres.operations.CreateExtension': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/operations.html#django.contrib.postgres.operations.CreateExtension',
'django.contrib.postgres.operations.CryptoExtension': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/operations.html#django.contrib.postgres.operations.CryptoExtension',
'django.contrib.postgres.operations.HStoreExtension': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/operations.html#django.contrib.postgres.operations.HStoreExtension',
'django.contrib.postgres.operations.RemoveCollation': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/operations.html#django.contrib.postgres.operations.RemoveCollation',
'django.contrib.postgres.operations.RemoveIndexConcurrently': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/operations.html#django.contrib.postgres.operations.RemoveIndexConcurrently',
'django.contrib.postgres.operations.TrigramExtension': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/operations.html#django.contrib.postgres.operations.TrigramExtension',
'django.contrib.postgres.operations.UnaccentExtension': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/operations.html#django.contrib.postgres.operations.UnaccentExtension',
'django.contrib.postgres.operations.ValidateConstraint': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/operations.html#django.contrib.postgres.operations.ValidateConstraint'},
'django.contrib.postgres.search': { 'django.contrib.postgres.search.SearchHeadline': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/search.html#django.contrib.postgres.search.SearchHeadline',
'django.contrib.postgres.search.SearchQuery': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/search.html#django.contrib.postgres.search.SearchQuery',
'django.contrib.postgres.search.SearchRank': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/search.html#django.contrib.postgres.search.SearchRank',
'django.contrib.postgres.search.SearchVector': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/search.html#django.contrib.postgres.search.SearchVector',
'django.contrib.postgres.search.SearchVectorField': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/search.html#django.contrib.postgres.search.SearchVectorField',
'django.contrib.postgres.search.TrigramDistance': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/search.html#django.contrib.postgres.search.TrigramDistance',
'django.contrib.postgres.search.TrigramSimilarity': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/search.html#django.contrib.postgres.search.TrigramSimilarity',
'django.contrib.postgres.search.TrigramStrictWordDistance': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/search.html#django.contrib.postgres.search.TrigramStrictWordDistance',
'django.contrib.postgres.search.TrigramStrictWordSimilarity': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/search.html#django.contrib.postgres.search.TrigramStrictWordSimilarity',
'django.contrib.postgres.search.TrigramWordDistance': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/search.html#django.contrib.postgres.search.TrigramWordDistance',
'django.contrib.postgres.search.TrigramWordSimilarity': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/search.html#django.contrib.postgres.search.TrigramWordSimilarity'},
'django.contrib.postgres.validators': { 'django.contrib.postgres.validators.KeysValidator': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/validators.html#django.contrib.postgres.validators.KeysValidator',
'django.contrib.postgres.validators.RangeMaxValueValidator': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/validators.html#django.contrib.postgres.validators.RangeMaxValueValidator',
'django.contrib.postgres.validators.RangeMinValueValidator': 'https://django.readthedocs.org/en/latest/ref/contrib/postgres/validators.html#django.contrib.postgres.validators.RangeMinValueValidator'},
'django.contrib.redirects.middleware': { 'django.contrib.redirects.middleware.RedirectFallbackMiddleware': 'https://django.readthedocs.org/en/latest/ref/contrib/redirects.html#django.contrib.redirects.middleware.RedirectFallbackMiddleware'},
'django.contrib.redirects.models': { 'django.contrib.redirects.models.Redirect': 'https://django.readthedocs.org/en/latest/ref/contrib/redirects.html#django.contrib.redirects.models.Redirect'},
'django.contrib.sessions': { 'django.contrib.sessions.middleware': 'https://django.readthedocs.org/en/latest/ref/middleware.html#module-django.contrib.sessions.middleware'},
'django.contrib.sessions.backends.base': { 'django.contrib.sessions.backends.base.SessionBase': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase',
'django.contrib.sessions.backends.base.SessionBase.__contains__': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.__contains__',
'django.contrib.sessions.backends.base.SessionBase.__delitem__': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.__delitem__',
'django.contrib.sessions.backends.base.SessionBase.__getitem__': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.__getitem__',
'django.contrib.sessions.backends.base.SessionBase.__setitem__': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.__setitem__',
'django.contrib.sessions.backends.base.SessionBase.aclear_expired': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.aclear_expired',
'django.contrib.sessions.backends.base.SessionBase.acycle_key': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.acycle_key',
'django.contrib.sessions.backends.base.SessionBase.adelete_test_cookie': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.adelete_test_cookie',
'django.contrib.sessions.backends.base.SessionBase.aflush': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.aflush',
'django.contrib.sessions.backends.base.SessionBase.aget': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.aget',
'django.contrib.sessions.backends.base.SessionBase.aget_expire_at_browser_close': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.aget_expire_at_browser_close',
'django.contrib.sessions.backends.base.SessionBase.aget_expiry_age': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.aget_expiry_age',
'django.contrib.sessions.backends.base.SessionBase.aget_expiry_date': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.aget_expiry_date',
'django.contrib.sessions.backends.base.SessionBase.ahas_key': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.ahas_key',
'django.contrib.sessions.backends.base.SessionBase.aitems': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.aitems',
'django.contrib.sessions.backends.base.SessionBase.akeys': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.akeys',
'django.contrib.sessions.backends.base.SessionBase.apop': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.apop',
'django.contrib.sessions.backends.base.SessionBase.aset': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.aset',
'django.contrib.sessions.backends.base.SessionBase.aset_expiry': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.aset_expiry',
'django.contrib.sessions.backends.base.SessionBase.aset_test_cookie': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.aset_test_cookie',
'django.contrib.sessions.backends.base.SessionBase.asetdefault': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.asetdefault',
'django.contrib.sessions.backends.base.SessionBase.atest_cookie_worked': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.atest_cookie_worked',
'django.contrib.sessions.backends.base.SessionBase.aupdate': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.aupdate',
'django.contrib.sessions.backends.base.SessionBase.avalues': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.avalues',
'django.contrib.sessions.backends.base.SessionBase.clear': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.clear',
'django.contrib.sessions.backends.base.SessionBase.clear_expired': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.clear_expired',
'django.contrib.sessions.backends.base.SessionBase.cycle_key': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.cycle_key',
'django.contrib.sessions.backends.base.SessionBase.delete_test_cookie': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.delete_test_cookie',
'django.contrib.sessions.backends.base.SessionBase.flush': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.flush',
'django.contrib.sessions.backends.base.SessionBase.get': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.get',
'django.contrib.sessions.backends.base.SessionBase.get_expire_at_browser_close': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.get_expire_at_browser_close',
'django.contrib.sessions.backends.base.SessionBase.get_expiry_age': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.get_expiry_age',
'django.contrib.sessions.backends.base.SessionBase.get_expiry_date': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.get_expiry_date',
'django.contrib.sessions.backends.base.SessionBase.get_session_cookie_age': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.get_session_cookie_age',
'django.contrib.sessions.backends.base.SessionBase.has_key': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.has_key',
'django.contrib.sessions.backends.base.SessionBase.items': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.items',
'django.contrib.sessions.backends.base.SessionBase.keys': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.keys',
'django.contrib.sessions.backends.base.SessionBase.pop': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.pop',
'django.contrib.sessions.backends.base.SessionBase.set_expiry': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.set_expiry',
'django.contrib.sessions.backends.base.SessionBase.set_test_cookie': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.set_test_cookie',
'django.contrib.sessions.backends.base.SessionBase.setdefault': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.setdefault',
'django.contrib.sessions.backends.base.SessionBase.test_cookie_worked': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.test_cookie_worked',
'django.contrib.sessions.backends.base.SessionBase.update': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.update',
'django.contrib.sessions.backends.base.SessionBase.values': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.base.SessionBase.values'},
'django.contrib.sessions.backends.cached_db': { 'django.contrib.sessions.backends.cached_db.SessionStore': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.cached_db.SessionStore'},
'django.contrib.sessions.backends.db': { 'django.contrib.sessions.backends.db.SessionStore': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.db.SessionStore',
'django.contrib.sessions.backends.db.SessionStore.create_model_instance': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.db.SessionStore.create_model_instance',
'django.contrib.sessions.backends.db.SessionStore.get_model_class': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.backends.db.SessionStore.get_model_class'},
'django.contrib.sessions.base_session': { 'django.contrib.sessions.base_session.AbstractBaseSession': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.base_session.AbstractBaseSession',
'django.contrib.sessions.base_session.AbstractBaseSession.get_decoded': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.base_session.AbstractBaseSession.get_decoded',
'django.contrib.sessions.base_session.AbstractBaseSession.get_session_store_class': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.base_session.AbstractBaseSession.get_session_store_class',
'django.contrib.sessions.base_session.BaseSessionManager': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.base_session.BaseSessionManager',
'django.contrib.sessions.base_session.BaseSessionManager.encode': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.base_session.BaseSessionManager.encode',
'django.contrib.sessions.base_session.BaseSessionManager.save': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.base_session.BaseSessionManager.save'},
'django.contrib.sessions.middleware': { 'django.contrib.sessions.middleware.SessionMiddleware': 'https://django.readthedocs.org/en/latest/ref/middleware.html#django.contrib.sessions.middleware.SessionMiddleware'},
'django.contrib.sessions.serializers': { 'django.contrib.sessions.serializers.JSONSerializer': 'https://django.readthedocs.org/en/latest/topics/http/sessions.html#django.contrib.sessions.serializers.JSONSerializer'},
'django.contrib.sitemaps': { 'django.contrib.sitemaps.GenericSitemap': 'https://django.readthedocs.org/en/latest/ref/contrib/sitemaps.html#django.contrib.sitemaps.GenericSitemap',
'django.contrib.sitemaps.Sitemap': 'https://django.readthedocs.org/en/latest/ref/contrib/sitemaps.html#django.contrib.sitemaps.Sitemap',
'django.contrib.sitemaps.Sitemap.get_languages_for_item': 'https://django.readthedocs.org/en/latest/ref/contrib/sitemaps.html#django.contrib.sitemaps.Sitemap.get_languages_for_item',
'django.contrib.sitemaps.Sitemap.get_latest_lastmod': 'https://django.readthedocs.org/en/latest/ref/contrib/sitemaps.html#django.contrib.sitemaps.Sitemap.get_latest_lastmod'},
'django.contrib.sitemaps.views': { 'django.contrib.sitemaps.views.index': 'https://django.readthedocs.org/en/latest/ref/contrib/sitemaps.html#django.contrib.sitemaps.views.index',
'django.contrib.sitemaps.views.sitemap': 'https://django.readthedocs.org/en/latest/ref/contrib/sitemaps.html#django.contrib.sitemaps.views.sitemap'},
'django.contrib.sites': { 'django.contrib.sites.middleware': 'https://django.readthedocs.org/en/latest/ref/middleware.html#module-django.contrib.sites.middleware'},
'django.contrib.sites.managers': { 'django.contrib.sites.managers.CurrentSiteManager': 'https://django.readthedocs.org/en/latest/ref/contrib/sites.html#django.contrib.sites.managers.CurrentSiteManager'},
'django.contrib.sites.middleware': { 'django.contrib.sites.middleware.CurrentSiteMiddleware': 'https://django.readthedocs.org/en/latest/ref/middleware.html#django.contrib.sites.middleware.CurrentSiteMiddleware'},
'django.contrib.sites.models': { 'django.contrib.sites.models.Site': 'https://django.readthedocs.org/en/latest/ref/contrib/sites.html#django.contrib.sites.models.Site'},
'django.contrib.sites.requests': { 'django.contrib.sites.requests.RequestSite': 'https://django.readthedocs.org/en/latest/ref/contrib/sites.html#django.contrib.sites.requests.RequestSite',
'django.contrib.sites.requests.RequestSite.__init__': 'https://django.readthedocs.org/en/latest/ref/contrib/sites.html#django.contrib.sites.requests.RequestSite.__init__'},
'django.contrib.sites.shortcuts': { 'django.contrib.sites.shortcuts.get_current_site': 'https://django.readthedocs.org/en/latest/ref/contrib/sites.html#django.contrib.sites.shortcuts.get_current_site'},
'django.contrib.staticfiles.storage': { 'django.contrib.staticfiles.storage.ManifestFilesMixin': 'https://django.readthedocs.org/en/latest/ref/contrib/staticfiles.html#django.contrib.staticfiles.storage.ManifestFilesMixin',
'django.contrib.staticfiles.storage.ManifestStaticFilesStorage': 'https://django.readthedocs.org/en/latest/ref/contrib/staticfiles.html#django.contrib.staticfiles.storage.ManifestStaticFilesStorage',
'django.contrib.staticfiles.storage.ManifestStaticFilesStorage.file_hash': 'https://django.readthedocs.org/en/latest/ref/contrib/staticfiles.html#django.contrib.staticfiles.storage.ManifestStaticFilesStorage.file_hash',
'django.contrib.staticfiles.storage.StaticFilesStorage': 'https://django.readthedocs.org/en/latest/ref/contrib/staticfiles.html#django.contrib.staticfiles.storage.StaticFilesStorage',
'django.contrib.staticfiles.storage.StaticFilesStorage.post_process': 'https://django.readthedocs.org/en/latest/ref/contrib/staticfiles.html#django.contrib.staticfiles.storage.StaticFilesStorage.post_process'},
'django.contrib.staticfiles.testing': { 'django.contrib.staticfiles.testing.StaticLiveServerTestCase': 'https://django.readthedocs.org/en/latest/ref/contrib/staticfiles.html#django.contrib.staticfiles.testing.StaticLiveServerTestCase'},
'django.contrib.staticfiles.urls': { 'django.contrib.staticfiles.urls.staticfiles_urlpatterns': 'https://django.readthedocs.org/en/latest/ref/contrib/staticfiles.html#django.contrib.staticfiles.urls.staticfiles_urlpatterns'},
'django.contrib.staticfiles.views': { 'django.contrib.staticfiles.views.serve': 'https://django.readthedocs.org/en/latest/ref/contrib/staticfiles.html#django.contrib.staticfiles.views.serve'},
'django.contrib.syndication': { 'django.contrib.syndication.Feed.get_context_data': 'https://django.readthedocs.org/en/latest/ref/contrib/syndication.html#django.contrib.syndication.Feed.get_context_data'},
'django.contrib.syndication.views': { 'django.contrib.syndication.views.Feed': 'https://django.readthedocs.org/en/latest/ref/contrib/syndication.html#django.contrib.syndication.views.Feed'},
'django.core': { 'django.core.checks': 'https://django.readthedocs.org/en/latest/topics/checks.html#module-django.core.checks',
'django.core.exceptions': 'https://django.readthedocs.org/en/latest/ref/exceptions.html#module-django.core.exceptions',
'django.core.files': 'https://django.readthedocs.org/en/latest/ref/files/index.html#module-django.core.files',
'django.core.mail': 'https://django.readthedocs.org/en/latest/topics/email.html#module-django.core.mail',
'django.core.management': 'https://django.readthedocs.org/en/latest/howto/custom-management-commands.html#module-django.core.management',
'django.core.paginator': 'https://django.readthedocs.org/en/latest/ref/paginator.html#module-django.core.paginator',
'django.core.signals': 'https://django.readthedocs.org/en/latest/ref/signals.html#module-django.core.signals',
'django.core.signing': 'https://django.readthedocs.org/en/latest/topics/signing.html#module-django.core.signing',
'django.core.validators': 'https://django.readthedocs.org/en/latest/ref/validators.html#module-django.core.validators'},
'django.core.cache': { 'django.core.cache.cache.add': 'https://django.readthedocs.org/en/latest/topics/cache.html#django.core.cache.cache.add',
'django.core.cache.cache.clear': 'https://django.readthedocs.org/en/latest/topics/cache.html#django.core.cache.cache.clear',
'django.core.cache.cache.close': 'https://django.readthedocs.org/en/latest/topics/cache.html#django.core.cache.cache.close',
'django.core.cache.cache.decr': 'https://django.readthedocs.org/en/latest/topics/cache.html#django.core.cache.cache.decr',
'django.core.cache.cache.delete': 'https://django.readthedocs.org/en/latest/topics/cache.html#django.core.cache.cache.delete',
'django.core.cache.cache.delete_many': 'https://django.readthedocs.org/en/latest/topics/cache.html#django.core.cache.cache.delete_many',
'django.core.cache.cache.get': 'https://django.readthedocs.org/en/latest/topics/cache.html#django.core.cache.cache.get',
'django.core.cache.cache.get_many': 'https://django.readthedocs.org/en/latest/topics/cache.html#django.core.cache.cache.get_many',
'django.core.cache.cache.get_or_set': 'https://django.readthedocs.org/en/latest/topics/cache.html#django.core.cache.cache.get_or_set',
'django.core.cache.cache.incr': 'https://django.readthedocs.org/en/latest/topics/cache.html#django.core.cache.cache.incr',
'django.core.cache.cache.set': 'https://django.readthedocs.org/en/latest/topics/cache.html#django.core.cache.cache.set',
'django.core.cache.cache.set_many': 'https://django.readthedocs.org/en/latest/topics/cache.html#django.core.cache.cache.set_many',
'django.core.cache.cache.touch': 'https://django.readthedocs.org/en/latest/topics/cache.html#django.core.cache.cache.touch'},
'django.core.cache.utils': { 'django.core.cache.utils.make_template_fragment_key': 'https://django.readthedocs.org/en/latest/topics/cache.html#django.core.cache.utils.make_template_fragment_key'},
'django.core.checks': { 'django.core.checks.CheckMessage': 'https://django.readthedocs.org/en/latest/ref/checks.html#django.core.checks.CheckMessage',
'django.core.checks.Critical': 'https://django.readthedocs.org/en/latest/ref/checks.html#django.core.checks.Critical',
'django.core.checks.Debug': 'https://django.readthedocs.org/en/latest/ref/checks.html#django.core.checks.Debug',
'django.core.checks.Error': 'https://django.readthedocs.org/en/latest/ref/checks.html#django.core.checks.Error',
'django.core.checks.Info': 'https://django.readthedocs.org/en/latest/ref/checks.html#django.core.checks.Info',
'django.core.checks.Warning': 'https://django.readthedocs.org/en/latest/ref/checks.html#django.core.checks.Warning',
'django.core.checks.register': 'https://django.readthedocs.org/en/latest/topics/checks.html#django.core.checks.register'},
'django.core.files': { 'django.core.files.File': 'https://django.readthedocs.org/en/latest/ref/files/file.html#django.core.files.File',
'django.core.files.File.__iter__': 'https://django.readthedocs.org/en/latest/ref/files/file.html#django.core.files.File.__iter__',
'django.core.files.File.chunks': 'https://django.readthedocs.org/en/latest/ref/files/file.html#django.core.files.File.chunks',
'django.core.files.File.close': 'https://django.readthedocs.org/en/latest/ref/files/file.html#django.core.files.File.close',
'django.core.files.File.delete': 'https://django.readthedocs.org/en/latest/ref/files/file.html#django.core.files.File.delete',
'django.core.files.File.multiple_chunks': 'https://django.readthedocs.org/en/latest/ref/files/file.html#django.core.files.File.multiple_chunks',
'django.core.files.File.open': 'https://django.readthedocs.org/en/latest/ref/files/file.html#django.core.files.File.open',
'django.core.files.File.save': 'https://django.readthedocs.org/en/latest/ref/files/file.html#django.core.files.File.save',
'django.core.files.storage': 'https://django.readthedocs.org/en/latest/ref/files/storage.html#module-django.core.files.storage',
'django.core.files.storage._open': 'https://django.readthedocs.org/en/latest/howto/custom-file-storage.html#django.core.files.storage._open',
'django.core.files.storage._save': 'https://django.readthedocs.org/en/latest/howto/custom-file-storage.html#django.core.files.storage._save',
'django.core.files.storage.get_alternative_name': 'https://django.readthedocs.org/en/latest/howto/custom-file-storage.html#django.core.files.storage.get_alternative_name',
'django.core.files.storage.get_available_name': 'https://django.readthedocs.org/en/latest/howto/custom-file-storage.html#django.core.files.storage.get_available_name',
'django.core.files.storage.get_valid_name': 'https://django.readthedocs.org/en/latest/howto/custom-file-storage.html#django.core.files.storage.get_valid_name',
'django.core.files.uploadedfile': 'https://django.readthedocs.org/en/latest/ref/files/uploads.html#module-django.core.files.uploadedfile',
'django.core.files.uploadhandler': 'https://django.readthedocs.org/en/latest/ref/files/uploads.html#module-django.core.files.uploadhandler'},
'django.core.files.base': { 'django.core.files.base.ContentFile': 'https://django.readthedocs.org/en/latest/ref/files/file.html#django.core.files.base.ContentFile'},
'django.core.files.images': { 'django.core.files.images.ImageFile': 'https://django.readthedocs.org/en/latest/ref/files/file.html#django.core.files.images.ImageFile'},
'django.core.files.storage': { 'django.core.files.storage.DefaultStorage': 'https://django.readthedocs.org/en/latest/ref/files/storage.html#django.core.files.storage.DefaultStorage',
'django.core.files.storage.FileSystemStorage': 'https://django.readthedocs.org/en/latest/ref/files/storage.html#django.core.files.storage.FileSystemStorage',
'django.core.files.storage.FileSystemStorage.get_created_time': 'https://django.readthedocs.org/en/latest/ref/files/storage.html#django.core.files.storage.FileSystemStorage.get_created_time',
'django.core.files.storage.InMemoryStorage': 'https://django.readthedocs.org/en/latest/ref/files/storage.html#django.core.files.storage.InMemoryStorage',
'django.core.files.storage.Storage': 'https://django.readthedocs.org/en/latest/ref/files/storage.html#django.core.files.storage.Storage',
'django.core.files.storage.Storage.delete': 'https://django.readthedocs.org/en/latest/ref/files/storage.html#django.core.files.storage.Storage.delete',
'django.core.files.storage.Storage.exists': 'https://django.readthedocs.org/en/latest/ref/files/storage.html#django.core.files.storage.Storage.exists',
'django.core.files.storage.Storage.generate_filename': 'https://django.readthedocs.org/en/latest/ref/files/storage.html#django.core.files.storage.Storage.generate_filename',
'django.core.files.storage.Storage.get_accessed_time': 'https://django.readthedocs.org/en/latest/ref/files/storage.html#django.core.files.storage.Storage.get_accessed_time',
'django.core.files.storage.Storage.get_alternative_name': 'https://django.readthedocs.org/en/latest/ref/files/storage.html#django.core.files.storage.Storage.get_alternative_name',
'django.core.files.storage.Storage.get_available_name': 'https://django.readthedocs.org/en/latest/ref/files/storage.html#django.core.files.storage.Storage.get_available_name',
'django.core.files.storage.Storage.get_created_time': 'https://django.readthedocs.org/en/latest/ref/files/storage.html#django.core.files.storage.Storage.get_created_time',
'django.core.files.storage.Storage.get_modified_time': 'https://django.readthedocs.org/en/latest/ref/files/storage.html#django.core.files.storage.Storage.get_modified_time',
'django.core.files.storage.Storage.get_valid_name': 'https://django.readthedocs.org/en/latest/ref/files/storage.html#django.core.files.storage.Storage.get_valid_name',
'django.core.files.storage.Storage.listdir': 'https://django.readthedocs.org/en/latest/ref/files/storage.html#django.core.files.storage.Storage.listdir',
'django.core.files.storage.Storage.open': 'https://django.readthedocs.org/en/latest/ref/files/storage.html#django.core.files.storage.Storage.open',
'django.core.files.storage.Storage.path': 'https://django.readthedocs.org/en/latest/ref/files/storage.html#django.core.files.storage.Storage.path',
'django.core.files.storage.Storage.save': 'https://django.readthedocs.org/en/latest/ref/files/storage.html#django.core.files.storage.Storage.save',
'django.core.files.storage.Storage.size': 'https://django.readthedocs.org/en/latest/ref/files/storage.html#django.core.files.storage.Storage.size',
'django.core.files.storage.Storage.url': 'https://django.readthedocs.org/en/latest/ref/files/storage.html#django.core.files.storage.Storage.url'},
'django.core.files.uploadedfile': { 'django.core.files.uploadedfile.InMemoryUploadedFile': 'https://django.readthedocs.org/en/latest/ref/files/uploads.html#django.core.files.uploadedfile.InMemoryUploadedFile',
'django.core.files.uploadedfile.TemporaryUploadedFile': 'https://django.readthedocs.org/en/latest/ref/files/uploads.html#django.core.files.uploadedfile.TemporaryUploadedFile',
'django.core.files.uploadedfile.TemporaryUploadedFile.temporary_file_path': 'https://django.readthedocs.org/en/latest/ref/files/uploads.html#django.core.files.uploadedfile.TemporaryUploadedFile.temporary_file_path',
'django.core.files.uploadedfile.UploadedFile': 'https://django.readthedocs.org/en/latest/ref/files/uploads.html#django.core.files.uploadedfile.UploadedFile',
'django.core.files.uploadedfile.UploadedFile.chunks': 'https://django.readthedocs.org/en/latest/ref/files/uploads.html#django.core.files.uploadedfile.UploadedFile.chunks',
'django.core.files.uploadedfile.UploadedFile.multiple_chunks': 'https://django.readthedocs.org/en/latest/ref/files/uploads.html#django.core.files.uploadedfile.UploadedFile.multiple_chunks',
'django.core.files.uploadedfile.UploadedFile.read': 'https://django.readthedocs.org/en/latest/ref/files/uploads.html#django.core.files.uploadedfile.UploadedFile.read'},
'django.core.files.uploadhandler': { 'django.core.files.uploadhandler.FileUploadHandler': 'https://django.readthedocs.org/en/latest/ref/files/uploads.html#django.core.files.uploadhandler.FileUploadHandler',
'django.core.files.uploadhandler.FileUploadHandler.file_complete': 'https://django.readthedocs.org/en/latest/ref/files/uploads.html#django.core.files.uploadhandler.FileUploadHandler.file_complete',
'django.core.files.uploadhandler.FileUploadHandler.handle_raw_input': 'https://django.readthedocs.org/en/latest/ref/files/uploads.html#django.core.files.uploadhandler.FileUploadHandler.handle_raw_input',
'django.core.files.uploadhandler.FileUploadHandler.new_file': 'https://django.readthedocs.org/en/latest/ref/files/uploads.html#django.core.files.uploadhandler.FileUploadHandler.new_file',
'django.core.files.uploadhandler.FileUploadHandler.receive_data_chunk': 'https://django.readthedocs.org/en/latest/ref/files/uploads.html#django.core.files.uploadhandler.FileUploadHandler.receive_data_chunk',
'django.core.files.uploadhandler.FileUploadHandler.upload_complete': 'https://django.readthedocs.org/en/latest/ref/files/uploads.html#django.core.files.uploadhandler.FileUploadHandler.upload_complete',
'django.core.files.uploadhandler.FileUploadHandler.upload_interrupted': 'https://django.readthedocs.org/en/latest/ref/files/uploads.html#django.core.files.uploadhandler.FileUploadHandler.upload_interrupted',
'django.core.files.uploadhandler.MemoryFileUploadHandler': 'https://django.readthedocs.org/en/latest/ref/files/uploads.html#django.core.files.uploadhandler.MemoryFileUploadHandler',
'django.core.files.uploadhandler.TemporaryFileUploadHandler': 'https://django.readthedocs.org/en/latest/ref/files/uploads.html#django.core.files.uploadhandler.TemporaryFileUploadHandler'},
'django.core.mail': { 'django.core.mail.EmailAlternative': 'https://django.readthedocs.org/en/latest/topics/email.html#django.core.mail.EmailAlternative',
'django.core.mail.EmailAttachment': 'https://django.readthedocs.org/en/latest/topics/email.html#django.core.mail.EmailAttachment',
'django.core.mail.EmailMessage': 'https://django.readthedocs.org/en/latest/topics/email.html#django.core.mail.EmailMessage',
'django.core.mail.EmailMultiAlternatives': 'https://django.readthedocs.org/en/latest/topics/email.html#django.core.mail.EmailMultiAlternatives',
'django.core.mail.EmailMultiAlternatives.attach_alternative': 'https://django.readthedocs.org/en/latest/topics/email.html#django.core.mail.EmailMultiAlternatives.attach_alternative',
'django.core.mail.EmailMultiAlternatives.body_contains': 'https://django.readthedocs.org/en/latest/topics/email.html#django.core.mail.EmailMultiAlternatives.body_contains',
'django.core.mail.get_connection': 'https://django.readthedocs.org/en/latest/topics/email.html#django.core.mail.get_connection',
'django.core.mail.mail_admins': 'https://django.readthedocs.org/en/latest/topics/email.html#django.core.mail.mail_admins',
'django.core.mail.mail_managers': 'https://django.readthedocs.org/en/latest/topics/email.html#django.core.mail.mail_managers',
'django.core.mail.send_mail': 'https://django.readthedocs.org/en/latest/topics/email.html#django.core.mail.send_mail',
'django.core.mail.send_mass_mail': 'https://django.readthedocs.org/en/latest/topics/email.html#django.core.mail.send_mass_mail'},
'django.core.mail.backends.smtp': { 'django.core.mail.backends.smtp.EmailBackend': 'https://django.readthedocs.org/en/latest/topics/email.html#django.core.mail.backends.smtp.EmailBackend'},
'django.core.management': { 'django.core.management.AppCommand': 'https://django.readthedocs.org/en/latest/howto/custom-management-commands.html#django.core.management.AppCommand',
'django.core.management.AppCommand.handle_app_config': 'https://django.readthedocs.org/en/latest/howto/custom-management-commands.html#django.core.management.AppCommand.handle_app_config',
'django.core.management.BaseCommand': 'https://django.readthedocs.org/en/latest/howto/custom-management-commands.html#django.core.management.BaseCommand',
'django.core.management.BaseCommand.add_arguments': 'https://django.readthedocs.org/en/latest/howto/custom-management-commands.html#django.core.management.BaseCommand.add_arguments',
'django.core.management.BaseCommand.check': 'https://django.readthedocs.org/en/latest/howto/custom-management-commands.html#django.core.management.BaseCommand.check',
'django.core.management.BaseCommand.create_parser': 'https://django.readthedocs.org/en/latest/howto/custom-management-commands.html#django.core.management.BaseCommand.create_parser',
'django.core.management.BaseCommand.execute': 'https://django.readthedocs.org/en/latest/howto/custom-management-commands.html#django.core.management.BaseCommand.execute',
'django.core.management.BaseCommand.get_check_kwargs': 'https://django.readthedocs.org/en/latest/howto/custom-management-commands.html#django.core.management.BaseCommand.get_check_kwargs',
'django.core.management.BaseCommand.get_version': 'https://django.readthedocs.org/en/latest/howto/custom-management-commands.html#django.core.management.BaseCommand.get_version',
'django.core.management.BaseCommand.handle': 'https://django.readthedocs.org/en/latest/howto/custom-management-commands.html#django.core.management.BaseCommand.handle',
'django.core.management.LabelCommand': 'https://django.readthedocs.org/en/latest/howto/custom-management-commands.html#django.core.management.LabelCommand',
'django.core.management.LabelCommand.handle_label': 'https://django.readthedocs.org/en/latest/howto/custom-management-commands.html#django.core.management.LabelCommand.handle_label',
'django.core.management.call_command': 'https://django.readthedocs.org/en/latest/ref/django-admin.html#django.core.management.call_command'},
'django.core.paginator': { 'django.core.paginator.AsyncPage': 'https://django.readthedocs.org/en/latest/ref/paginator.html#django.core.paginator.AsyncPage',
'django.core.paginator.AsyncPage.aget_object_list': 'https://django.readthedocs.org/en/latest/ref/paginator.html#django.core.paginator.AsyncPage.aget_object_list',
'django.core.paginator.AsyncPaginator': 'https://django.readthedocs.org/en/latest/ref/paginator.html#django.core.paginator.AsyncPaginator',
'django.core.paginator.Page': 'https://django.readthedocs.org/en/latest/ref/paginator.html#django.core.paginator.Page',
'django.core.paginator.Page.end_index': 'https://django.readthedocs.org/en/latest/ref/paginator.html#django.core.paginator.Page.end_index',
'django.core.paginator.Page.has_next': 'https://django.readthedocs.org/en/latest/ref/paginator.html#django.core.paginator.Page.has_next',
'django.core.paginator.Page.has_other_pages': 'https://django.readthedocs.org/en/latest/ref/paginator.html#django.core.paginator.Page.has_other_pages',
'django.core.paginator.Page.has_previous': 'https://django.readthedocs.org/en/latest/ref/paginator.html#django.core.paginator.Page.has_previous',
'django.core.paginator.Page.next_page_number': 'https://django.readthedocs.org/en/latest/ref/paginator.html#django.core.paginator.Page.next_page_number',
'django.core.paginator.Page.previous_page_number': 'https://django.readthedocs.org/en/latest/ref/paginator.html#django.core.paginator.Page.previous_page_number',
'django.core.paginator.Page.start_index': 'https://django.readthedocs.org/en/latest/ref/paginator.html#django.core.paginator.Page.start_index',
'django.core.paginator.Paginator': 'https://django.readthedocs.org/en/latest/ref/paginator.html#django.core.paginator.Paginator',
'django.core.paginator.Paginator.get_elided_page_range': 'https://django.readthedocs.org/en/latest/ref/paginator.html#django.core.paginator.Paginator.get_elided_page_range',
'django.core.paginator.Paginator.get_page': 'https://django.readthedocs.org/en/latest/ref/paginator.html#django.core.paginator.Paginator.get_page',
'django.core.paginator.Paginator.page': 'https://django.readthedocs.org/en/latest/ref/paginator.html#django.core.paginator.Paginator.page'},
'django.core.serializers': { 'django.core.serializers.get_serializer': 'https://django.readthedocs.org/en/latest/topics/serialization.html#django.core.serializers.get_serializer'},
'django.core.serializers.json': { 'django.core.serializers.json.DjangoJSONEncoder': 'https://django.readthedocs.org/en/latest/topics/serialization.html#django.core.serializers.json.DjangoJSONEncoder'},
'django.core.signing': { 'django.core.signing.Signer': 'https://django.readthedocs.org/en/latest/topics/signing.html#django.core.signing.Signer',
'django.core.signing.TimestampSigner': 'https://django.readthedocs.org/en/latest/topics/signing.html#django.core.signing.TimestampSigner',
'django.core.signing.TimestampSigner.sign': 'https://django.readthedocs.org/en/latest/topics/signing.html#django.core.signing.TimestampSigner.sign',
'django.core.signing.TimestampSigner.sign_object': 'https://django.readthedocs.org/en/latest/topics/signing.html#django.core.signing.TimestampSigner.sign_object',
'django.core.signing.TimestampSigner.unsign': 'https://django.readthedocs.org/en/latest/topics/signing.html#django.core.signing.TimestampSigner.unsign',
'django.core.signing.TimestampSigner.unsign_object': 'https://django.readthedocs.org/en/latest/topics/signing.html#django.core.signing.TimestampSigner.unsign_object',
'django.core.signing.dumps': 'https://django.readthedocs.org/en/latest/topics/signing.html#django.core.signing.dumps',
'django.core.signing.loads': 'https://django.readthedocs.org/en/latest/topics/signing.html#django.core.signing.loads'},
'django.core.validators': { 'django.core.validators.DecimalValidator': 'https://django.readthedocs.org/en/latest/ref/validators.html#django.core.validators.DecimalValidator',
'django.core.validators.DomainNameValidator': 'https://django.readthedocs.org/en/latest/ref/validators.html#django.core.validators.DomainNameValidator',
'django.core.validators.EmailValidator': 'https://django.readthedocs.org/en/latest/ref/validators.html#django.core.validators.EmailValidator',
'django.core.validators.FileExtensionValidator': 'https://django.readthedocs.org/en/latest/ref/validators.html#django.core.validators.FileExtensionValidator',
'django.core.validators.MaxLengthValidator': 'https://django.readthedocs.org/en/latest/ref/validators.html#django.core.validators.MaxLengthValidator',
'django.core.validators.MaxValueValidator': 'https://django.readthedocs.org/en/latest/ref/validators.html#django.core.validators.MaxValueValidator',
'django.core.validators.MinLengthValidator': 'https://django.readthedocs.org/en/latest/ref/validators.html#django.core.validators.MinLengthValidator',
'django.core.validators.MinValueValidator': 'https://django.readthedocs.org/en/latest/ref/validators.html#django.core.validators.MinValueValidator',
'django.core.validators.ProhibitNullCharactersValidator': 'https://django.readthedocs.org/en/latest/ref/validators.html#django.core.validators.ProhibitNullCharactersValidator',
'django.core.validators.RegexValidator': 'https://django.readthedocs.org/en/latest/ref/validators.html#django.core.validators.RegexValidator',
'django.core.validators.StepValueValidator': 'https://django.readthedocs.org/en/latest/ref/validators.html#django.core.validators.StepValueValidator',
'django.core.validators.URLValidator': 'https://django.readthedocs.org/en/latest/ref/validators.html#django.core.validators.URLValidator',
'django.core.validators.int_list_validator': 'https://django.readthedocs.org/en/latest/ref/validators.html#django.core.validators.int_list_validator'},
'django.db': { 'django.db.backends': 'https://django.readthedocs.org/en/latest/ref/signals.html#module-django.db.backends',
'django.db.migrations': 'https://django.readthedocs.org/en/latest/topics/migrations.html#module-django.db.migrations',
'django.db.models': 'https://django.readthedocs.org/en/latest/topics/db/models.html#module-django.db.models',
'django.db.models.as_sql': 'https://django.readthedocs.org/en/latest/ref/models/lookups.html#django.db.models.as_sql',
'django.db.models.as_vendorname': 'https://django.readthedocs.org/en/latest/ref/models/lookups.html#django.db.models.as_vendorname',
'django.db.models.from_queryset': 'https://django.readthedocs.org/en/latest/topics/db/managers.html#django.db.models.from_queryset',
'django.db.models.get_lookup': 'https://django.readthedocs.org/en/latest/ref/models/lookups.html#django.db.models.get_lookup',
'django.db.models.get_transform': 'https://django.readthedocs.org/en/latest/ref/models/lookups.html#django.db.models.get_transform',
'django.db.transaction': 'https://django.readthedocs.org/en/latest/topics/db/transactions.html#module-django.db.transaction'},
'django.db.backends.base': { 'django.db.backends.base.DatabaseWrapper.execute_wrapper': 'https://django.readthedocs.org/en/latest/topics/db/instrumentation.html#django.db.backends.base.DatabaseWrapper.execute_wrapper',
'django.db.backends.base.schema': 'https://django.readthedocs.org/en/latest/ref/schema-editor.html#module-django.db.backends.base.schema'},
'django.db.backends.base.schema': { 'django.db.backends.base.schema.BaseDatabaseSchemaEditor': 'https://django.readthedocs.org/en/latest/ref/schema-editor.html#django.db.backends.base.schema.BaseDatabaseSchemaEditor',
'django.db.backends.base.schema.BaseDatabaseSchemaEditor.add_constraint': 'https://django.readthedocs.org/en/latest/ref/schema-editor.html#django.db.backends.base.schema.BaseDatabaseSchemaEditor.add_constraint',
'django.db.backends.base.schema.BaseDatabaseSchemaEditor.add_field': 'https://django.readthedocs.org/en/latest/ref/schema-editor.html#django.db.backends.base.schema.BaseDatabaseSchemaEditor.add_field',
'django.db.backends.base.schema.BaseDatabaseSchemaEditor.add_index': 'https://django.readthedocs.org/en/latest/ref/schema-editor.html#django.db.backends.base.schema.BaseDatabaseSchemaEditor.add_index',
'django.db.backends.base.schema.BaseDatabaseSchemaEditor.alter_db_table': 'https://django.readthedocs.org/en/latest/ref/schema-editor.html#django.db.backends.base.schema.BaseDatabaseSchemaEditor.alter_db_table',
'django.db.backends.base.schema.BaseDatabaseSchemaEditor.alter_db_table_comment': 'https://django.readthedocs.org/en/latest/ref/schema-editor.html#django.db.backends.base.schema.BaseDatabaseSchemaEditor.alter_db_table_comment',
'django.db.backends.base.schema.BaseDatabaseSchemaEditor.alter_db_tablespace': 'https://django.readthedocs.org/en/latest/ref/schema-editor.html#django.db.backends.base.schema.BaseDatabaseSchemaEditor.alter_db_tablespace',
'django.db.backends.base.schema.BaseDatabaseSchemaEditor.alter_field': 'https://django.readthedocs.org/en/latest/ref/schema-editor.html#django.db.backends.base.schema.BaseDatabaseSchemaEditor.alter_field',
'django.db.backends.base.schema.BaseDatabaseSchemaEditor.alter_index_together': 'https://django.readthedocs.org/en/latest/ref/schema-editor.html#django.db.backends.base.schema.BaseDatabaseSchemaEditor.alter_index_together',
'django.db.backends.base.schema.BaseDatabaseSchemaEditor.alter_unique_together': 'https://django.readthedocs.org/en/latest/ref/schema-editor.html#django.db.backends.base.schema.BaseDatabaseSchemaEditor.alter_unique_together',
'django.db.backends.base.schema.BaseDatabaseSchemaEditor.create_model': 'https://django.readthedocs.org/en/latest/ref/schema-editor.html#django.db.backends.base.schema.BaseDatabaseSchemaEditor.create_model',
'django.db.backends.base.schema.BaseDatabaseSchemaEditor.delete_model': 'https://django.readthedocs.org/en/latest/ref/schema-editor.html#django.db.backends.base.schema.BaseDatabaseSchemaEditor.delete_model',
'django.db.backends.base.schema.BaseDatabaseSchemaEditor.execute': 'https://django.readthedocs.org/en/latest/ref/schema-editor.html#django.db.backends.base.schema.BaseDatabaseSchemaEditor.execute',
'django.db.backends.base.schema.BaseDatabaseSchemaEditor.remove_constraint': 'https://django.readthedocs.org/en/latest/ref/schema-editor.html#django.db.backends.base.schema.BaseDatabaseSchemaEditor.remove_constraint',
'django.db.backends.base.schema.BaseDatabaseSchemaEditor.remove_field': 'https://django.readthedocs.org/en/latest/ref/schema-editor.html#django.db.backends.base.schema.BaseDatabaseSchemaEditor.remove_field',
'django.db.backends.base.schema.BaseDatabaseSchemaEditor.remove_index': 'https://django.readthedocs.org/en/latest/ref/schema-editor.html#django.db.backends.base.schema.BaseDatabaseSchemaEditor.remove_index',
'django.db.backends.base.schema.BaseDatabaseSchemaEditor.rename_index': 'https://django.readthedocs.org/en/latest/ref/schema-editor.html#django.db.backends.base.schema.BaseDatabaseSchemaEditor.rename_index'},
'django.db.connection.creation': { 'django.db.connection.creation.create_test_db': 'https://django.readthedocs.org/en/latest/topics/testing/advanced.html#django.db.connection.creation.create_test_db',
'django.db.connection.creation.destroy_test_db': 'https://django.readthedocs.org/en/latest/topics/testing/advanced.html#django.db.connection.creation.destroy_test_db',
'django.db.connection.creation.serialize_db_to_string': 'https://django.readthedocs.org/en/latest/topics/testing/advanced.html#django.db.connection.creation.serialize_db_to_string'},
'django.db.migrations': { 'django.db.migrations.operations': 'https://django.readthedocs.org/en/latest/ref/migration-operations.html#module-django.db.migrations.operations'},
'django.db.migrations.django.db.migrations': { 'django.db.migrations.django.db.migrations.swappable_dependency': 'https://django.readthedocs.org/en/latest/topics/migrations.html#django.db.migrations.django.db.migrations.swappable_dependency'},
'django.db.migrations.operations': { 'django.db.migrations.operations.AddConstraint': 'https://django.readthedocs.org/en/latest/ref/migration-operations.html#django.db.migrations.operations.AddConstraint',
'django.db.migrations.operations.AddField': 'https://django.readthedocs.org/en/latest/ref/migration-operations.html#django.db.migrations.operations.AddField',
'django.db.migrations.operations.AddIndex': 'https://django.readthedocs.org/en/latest/ref/migration-operations.html#django.db.migrations.operations.AddIndex',
'django.db.migrations.operations.AlterConstraint': 'https://django.readthedocs.org/en/latest/ref/migration-operations.html#django.db.migrations.operations.AlterConstraint',
'django.db.migrations.operations.AlterField': 'https://django.readthedocs.org/en/latest/ref/migration-operations.html#django.db.migrations.operations.AlterField',
'django.db.migrations.operations.AlterIndexTogether': 'https://django.readthedocs.org/en/latest/ref/migration-operations.html#django.db.migrations.operations.AlterIndexTogether',
'django.db.migrations.operations.AlterModelManagers': 'https://django.readthedocs.org/en/latest/ref/migration-operations.html#django.db.migrations.operations.AlterModelManagers',
'django.db.migrations.operations.AlterModelOptions': 'https://django.readthedocs.org/en/latest/ref/migration-operations.html#django.db.migrations.operations.AlterModelOptions',
'django.db.migrations.operations.AlterModelTable': 'https://django.readthedocs.org/en/latest/ref/migration-operations.html#django.db.migrations.operations.AlterModelTable',
'django.db.migrations.operations.AlterModelTableComment': 'https://django.readthedocs.org/en/latest/ref/migration-operations.html#django.db.migrations.operations.AlterModelTableComment',
'django.db.migrations.operations.AlterOrderWithRespectTo': 'https://django.readthedocs.org/en/latest/ref/migration-operations.html#django.db.migrations.operations.AlterOrderWithRespectTo',
'django.db.migrations.operations.AlterUniqueTogether': 'https://django.readthedocs.org/en/latest/ref/migration-operations.html#django.db.migrations.operations.AlterUniqueTogether',
'django.db.migrations.operations.CreateModel': 'https://django.readthedocs.org/en/latest/ref/migration-operations.html#django.db.migrations.operations.CreateModel',
'django.db.migrations.operations.DeleteModel': 'https://django.readthedocs.org/en/latest/ref/migration-operations.html#django.db.migrations.operations.DeleteModel',
'django.db.migrations.operations.RemoveConstraint': 'https://django.readthedocs.org/en/latest/ref/migration-operations.html#django.db.migrations.operations.RemoveConstraint',
'django.db.migrations.operations.RemoveField': 'https://django.readthedocs.org/en/latest/ref/migration-operations.html#django.db.migrations.operations.RemoveField',
'django.db.migrations.operations.RemoveIndex': 'https://django.readthedocs.org/en/latest/ref/migration-operations.html#django.db.migrations.operations.RemoveIndex',
'django.db.migrations.operations.RenameField': 'https://django.readthedocs.org/en/latest/ref/migration-operations.html#django.db.migrations.operations.RenameField',
'django.db.migrations.operations.RenameIndex': 'https://django.readthedocs.org/en/latest/ref/migration-operations.html#django.db.migrations.operations.RenameIndex',
'django.db.migrations.operations.RenameModel': 'https://django.readthedocs.org/en/latest/ref/migration-operations.html#django.db.migrations.operations.RenameModel',
'django.db.migrations.operations.RunPython': 'https://django.readthedocs.org/en/latest/ref/migration-operations.html#django.db.migrations.operations.RunPython',
'django.db.migrations.operations.RunPython.noop': 'https://django.readthedocs.org/en/latest/ref/migration-operations.html#django.db.migrations.operations.RunPython.noop',
'django.db.migrations.operations.RunSQL': 'https://django.readthedocs.org/en/latest/ref/migration-operations.html#django.db.migrations.operations.RunSQL',
'django.db.migrations.operations.SeparateDatabaseAndState': 'https://django.readthedocs.org/en/latest/ref/migration-operations.html#django.db.migrations.operations.SeparateDatabaseAndState'},
'django.db.migrations.operations.base': { 'django.db.migrations.operations.base.OperationCategory': 'https://django.readthedocs.org/en/latest/ref/migration-operations.html#django.db.migrations.operations.base.OperationCategory'},
'django.db.models': { 'django.db.models.Aggregate': 'https://django.readthedocs.org/en/latest/ref/models/expressions.html#django.db.models.Aggregate',
'django.db.models.AutoField': 'https://django.readthedocs.org/en/latest/ref/models/fields.html#django.db.models.AutoField',
'django.db.models.Avg': 'https://django.readthedocs.org/en/latest/ref/models/querysets.html#django.db.models.Avg',
'django.db.models.BaseConstraint': 'https://django.readthedocs.org/en/latest/ref/models/constraints.html#django.db.models.BaseConstraint',
'django.db.models.BaseConstraint.validate': 'https://django.readthedocs.org/en/latest/ref/models/constraints.html#django.db.models.BaseConstraint.validate',
'django.db.models.BigAutoField': 'https://django.readthedocs.org/en/latest/ref/models/fields.html#django.db.models.BigAutoField',
'django.db.models.BigIntegerField': 'https://django.readthedocs.org/en/latest/ref/models/fields.html#django.db.models.BigIntegerField',
'django.db.models.BinaryField': 'https://django.readthedocs.org/en/latest/ref/models/fields.html#django.db.models.BinaryField',
'django.db.models.BooleanField': 'https://django.readthedocs.org/en/latest/ref/models/fields.html#django.db.models.BooleanField',
'django.db.models.CharField': 'https://django.readthedocs.org/en/latest/ref/models/fields.html#django.db.models.CharField',
'django.db.models.CheckConstraint': 'https://django.readthedocs.org/en/latest/ref/models/constraints.html#django.db.models.CheckConstraint',
'django.db.models.CompositePrimaryKey': 'https://django.readthedocs.org/en/latest/ref/models/fields.html#django.db.models.CompositePrimaryKey',
'django.db.models.Count': 'https://django.readthedocs.org/en/latest/ref/models/querysets.html#django.db.models.Count',
'django.db.models.CursorWrapper.callproc': 'https://django.readthedocs.org/en/latest/topics/db/sql.html#django.db.models.CursorWrapper.callproc',
'django.db.models.DateField': 'https://django.readthedocs.org/en/latest/ref/models/fields.html#django.db.models.DateField',
'django.db.models.DateTimeField': 'https://django.readthedocs.org/en/latest/ref/models/fields.html#django.db.models.DateTimeField',
'django.db.models.DecimalField': 'https://django.readthedocs.org/en/latest/ref/models/fields.html#django.db.models.DecimalField',
'django.db.models.DurationField': 'https://django.readthedocs.org/en/latest/ref/models/fields.html#django.db.models.DurationField',
'django.db.models.EmailField': 'https://django.readthedocs.org/en/latest/ref/models/fields.html#django.db.models.EmailField',
'django.db.models.Exists': 'https://django.readthedocs.org/en/latest/ref/models/expressions.html#django.db.models.Exists',
'django.db.models.Expression': 'https://django.readthedocs.org/en/latest/ref/models/expressions.html#django.db.models.Expression',
'django.db.models.Expression.asc': 'https://django.readthedocs.org/en/latest/ref/models/expressions.html#django.db.models.Expression.asc',
'django.db.models.Expression.convert_value': 'https://django.readthedocs.org/en/latest/ref/models/expressions.html#django.db.models.Expression.convert_value',
'django.db.models.Expression.desc': 'https://django.readthedocs.org/en/latest/ref/models/expressions.html#django.db.models.Expression.desc',
'django.db.models.Expression.get_group_by_cols': 'https://django.readthedocs.org/en/latest/ref/models/expressions.html#django.db.models.Expression.get_group_by_cols',
'django.db.models.Expression.get_source_expressions': 'https://django.readthedocs.org/en/latest/ref/models/expressions.html#django.db.models.Expression.get_source_expressions',
'django.db.models.Expression.relabeled_clone': 'https://django.readthedocs.org/en/latest/ref/models/expressions.html#django.db.models.Expression.relabeled_clone',
'django.db.models.Expression.resolve_expression': 'https://django.readthedocs.org/en/latest/ref/models/expressions.html#django.db.models.Expression.resolve_expression',
'django.db.models.Expression.reverse_ordering': 'https://django.readthedocs.org/en/latest/ref/models/expressions.html#django.db.models.Expression.reverse_ordering',
'django.db.models.Expression.set_source_expressions': 'https://django.readthedocs.org/en/latest/ref/models/expressions.html#django.db.models.Expression.set_source_expressions',
'django.db.models.ExpressionWrapper': 'https://django.readthedocs.org/en/latest/ref/models/expressions.html#django.db.models.ExpressionWrapper',
'django.db.models.F': 'https://django.readthedocs.org/en/latest/ref/models/expressions.html#django.db.models.F',
'django.db.models.Field': 'https://django.readthedocs.org/en/latest/ref/models/fields.html#django.db.models.Field',
'django.db.models.Field.db_type': 'https://django.readthedocs.org/en/latest/ref/models/fields.html#django.db.models.Field.db_type',
'django.db.models.Field.deconstruct': 'https://django.readthedocs.org/en/latest/ref/models/fields.html#django.db.models.Field.deconstruct',
'django.db.models.Field.formfield': 'https://django.readthedocs.org/en/latest/ref/models/fields.html#django.db.models.Field.formfield',
'django.db.models.Field.from_db_value': 'https://django.readthedocs.org/en/latest/ref/models/fields.html#django.db.models.Field.from_db_value',
'django.db.models.Field.get_db_prep_save': 'https://django.readthedocs.org/en/latest/ref/models/fields.html#django.db.models.Field.get_db_prep_save',
'django.db.models.Field.get_db_prep_value': 'https://django.readthedocs.org/en/latest/ref/models/fields.html#django.db.models.Field.get_db_prep_value',
'django.db.models.Field.get_internal_type': 'https://django.readthedocs.org/en/latest/ref/models/fields.html#django.db.models.Field.get_internal_type',
'django.db.models.Field.get_prep_value': 'https://django.readthedocs.org/en/latest/ref/models/fields.html#django.db.models.Field.get_prep_value',
'django.db.models.Field.pre_save': 'https://django.readthedocs.org/en/latest/ref/models/fields.html#django.db.models.Field.pre_save',
'django.db.models.Field.rel_db_type': 'https://django.readthedocs.org/en/latest/ref/models/fields.html#django.db.models.Field.rel_db_type',
'django.db.models.Field.to_python': 'https://django.readthedocs.org/en/latest/ref/models/fields.html#django.db.models.Field.to_python',
'django.db.models.Field.value_from_object': 'https://django.readthedocs.org/en/latest/ref/models/fields.html#django.db.models.Field.value_from_object',
'django.db.models.Field.value_to_string': 'https://django.readthedocs.org/en/latest/ref/models/fields.html#django.db.models.Field.value_to_string',
'django.db.models.FileField': 'https://django.readthedocs.org/en/latest/ref/models/fields.html#django.db.models.FileField',
'django.db.models.FilePathField': 'https://django.readthedocs.org/en/latest/ref/models/fields.html#django.db.models.FilePathField',