Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
Saleor — an open source storefront written in Python and Django
admin -
python - Django not sending error emails - how can I debug? - Stack Overflow
-
djangosnippets: Filter changelist by a numeric field using a number of common value ranges
-
Django Conditional Expressions in Queries - Micropyramid
-
GeoSHAPE
-
johbo/gutter: Fully featured Python feature switch toolkit
This has a python3 branch. Start from here to build. -
Scalable and resilient Django with Kubernetes — Harish Narayanan
-
Best ecommerce app: Saleor vs Oscar vs Cartridge: Your opinion please? : django
-
Cartridge — Cartridge 0.8.4 documentation
-
mirumee/django-payments: Universal payment handling for Django
-
Saleor — an open source storefront written in Python and Django
-
mirumee/saleor: An e-commerce storefront for Python and Django
-
Custom template tags and filters
-
Celery Best Practices: practical approach – Adil Khashtamov's Personal Blog
Celery Best Practices: practical approach #celery #python #queue #task #async #webdev #django -
How to Reset Migrations
-
Learn web development | MDN
Tutorials on web dev - including Django tutorial -
Kill The Yak | Use PostgreSQL with Flask or Django
-
Kill The Yak | No-BS guides to get your project rolling
-
Best practices for scaling Django by Anton Pirker | Opbeat Community
-
Roberto Rosario / django-must-watch · GitLab
-
Factory Boy as an Alternative to Django Testing Fixtures | Caktus Group
-
Time Zones in Pytz & Django
-
mixcloud/django-experiments: Django AB testing module
Mostly controlled through template tags. Requires Redis -
Django Auth with an LDAP Active Directory
-
How to achieve authentication with django-auth-ldap? - Stack Overflow
# Django Auth Ldap main_dn = 'dc=____,dc=organisation,dc=com' groups_dn = 'ou=Groups,'+main_dn users_dn = 'ou=Users,'+main_dn AUTHENTICATION_BACKENDS = ( 'django_auth_ldap.backend.LDAPBackend', 'django.contrib.auth.backends.ModelBackend', ) AUTH_LDAP_SERVER_URI = "ldap://ldap.organisation.com" AUTH_LDAP_BIND_DN = 'cn=___,'+main_dn AUTH_LDAP_BIND_PASSWORD = "__________________" AUTH_LDAP_USER_SEARCH = LDAPSearch(users_dn, 2, "(uid=%(user)s)") AUTH_LDAP_USER_ATTR_MAP = { "first_name": "givenName", "last_name": "sn", "email": "mail" } AUTH_LDAP_MIRROR_GROUPS = True AUTH_LDAP_ALWAYS_UPDATE_USER = True AUTH_LDAP_GROUP_TYPE = PosixGroupType() AUTH_LDAP_GROUP_SEARCH = LDAPSearch(groups_dn, ldap.SCOPE_SUBTREE, "(objectClass=posixGroup)") AUTH_LDAP_USER_FLAGS_BY_GROUP = { "is_staff": "cn=admins,"+groups_dn, "is_superuser": "cn=developers,"+groups_dn, }