Skip to content

Commit f0eb29b

Browse files
committed
add django examples roll up page
1 parent 7f47c47 commit f0eb29b

File tree

1 file changed

+80
-0
lines changed

1 file changed

+80
-0
lines changed

content/pages/examples/django/django-code-examples.markdown

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,61 @@ These projects, ordered alphabetically, are also helpful as example
2525
code for how to build your own applications.
2626

2727

28+
### AuditLog
29+
[Auditlog](https://github.com/jjkester/django-auditlog)
30+
([project documentation](https://django-auditlog.readthedocs.io/en/latest/))
31+
is a [Django](/django.html) app that logs changes to Python objects,
32+
similar to the Django admin's logs but with more details and
33+
output formats. Auditlog's source code is provided as open source under the
34+
[MIT license](https://github.com/jjkester/django-auditlog/blob/master/LICENSE).
35+
36+
Example code found in the AuditLog project:
37+
38+
* [django.contrib.admin.filters SimpleListFilter](/django-contrib-admin-filters-simplelistfilter-examples.html)
39+
* [django.utils.html format_html](/django-utils-html-format-html-examples.html)
40+
41+
42+
### django-allauth
43+
[django-allauth](https://github.com/pennersr/django-allauth)
44+
([project website](https://www.intenct.nl/projects/django-allauth/)) is a
45+
[Django](/django.html) library for easily adding local and social authentication
46+
flows to Django projects. It is open source under the
47+
[MIT License](https://github.com/pennersr/django-allauth/blob/master/LICENSE).
48+
49+
Code used for examples from the django-allauth project:
50+
51+
* [django.conf.urls.url](/django-conf-urls-url-examples.html)
52+
* [django.forms](/django-forms-examples.html)
53+
54+
55+
### django-angular
56+
[django-angular](https://github.com/jrief/django-angular)
57+
([project examples website](https://django-angular.awesto.com/classic_form/))
58+
is a library with helper code to make it easier to use
59+
[Angular](/angular.html) as the front-end to [Django](/django.html) projects.
60+
The code for django-angular is
61+
[open source under the MIT license](https://github.com/jrief/django-angular/blob/master/LICENSE.txt).
62+
63+
Code from django-angular is shown on:
64+
65+
* [django.utils.html format_html](/django-utils-html-format-html-examples.html)
66+
67+
68+
### django-cors-headers
69+
[django-cors-headers](https://github.com/ottoyiu/django-cors-headers) is
70+
an
71+
[open source](https://github.com/ottoyiu/django-cors-headers/blob/master/LICENSE)
72+
library for enabling
73+
[Cross-Origin Resource Sharing (CORS)](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS)
74+
handling in your [Django](/django.html) web applications and appropriately
75+
dealing with HTTP headers for CORS requests.
76+
77+
Code examples from the django-cors-headers project:
78+
79+
* [django.conf settings](/django-conf-settings-examples.html)
80+
* [django.dispatch Signal](/django-dispatch-dispatcher-signal-examples.html)
81+
82+
2883
### django-cms
2984
[django-cms](https://github.com/divio/django-cms)
3085
([project website](https://www.django-cms.org/en/)) is a Python-based
@@ -69,6 +124,31 @@ Code from django-filer can be found on these pages:
69124
* [django.core.management.base BaseCommand](/django-core-management-base-basecommand-examples.html)
70125

71126

127+
### django-oscar
128+
[django-oscar](https://github.com/django-oscar/django-oscar/)
129+
([project website](http://oscarcommerce.com/))
130+
is a framework for building e-commerce sites on top of
131+
[Django](/django.html). The code for the project is available open
132+
source under a
133+
[custom license written by Tangent Communications PLC](https://github.com/django-oscar/django-oscar/blob/master/LICENSE).
134+
135+
Further code examples from django-oscar:
136+
137+
* [django.contrib.admin](/django-contrib-admin-examples.html)
138+
139+
140+
### django-smithy
141+
[django-smithy](https://github.com/jamiecounsell/django-smithy) is
142+
a [Django](/django.html) code library that allows users to send
143+
HTTP requests from the Django admin user interface. The code for
144+
the project is open source under the
145+
[MIT license](https://github.com/jamiecounsell/django-smithy/blob/master/LICENSE).
146+
147+
Code examples from django-smithy are shown on the following pages:
148+
149+
* [django.utils timezone](/django-utils-timezone-examples.html)
150+
151+
72152
### gadget-board
73153
[gadget-board](https://github.com/mik4el/gadget-board) is a
74154
[Django](/django.html),

0 commit comments

Comments
 (0)