Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
Loading Django FileField and ImageFields from the file system
-
mmcardle/django_builder: Django Builder Site
Neat. -
Deploying Django, Postgres,Redis Containers To Kubernetes
-
Tutorial : Implementing Django Formsets | Nicole Harris
-
What I Wish I Knew When I Started Django Development 2018 - Thoughts. Stuff.
-
WhiteNoise — WhiteNoise 3.3.1 documentation
-
Using setup.py in Your (Django) Project | Lincoln Loop
-
django/django/forms/templates/django/forms/widgets at master · django/django
1,914 Star 31,652 Fork 13,376 django/django Code Pull requests 198 Insights Branch: master Create new file Upload files Find file History django/django/forms/templates/django/forms/widgets/ Latest commit ff05de7 19 days ago jdufresne and timgraham Fixed #29038 -- Removed closing slash from HTML void tags. .. attrs.htmlFixed #28303 -- Prevented localization of attribute values in the DTL…8 months ago checkbox.htmlFixed #15667 -- Added template-based widget rendering.a year ago checkbox_option.htmlFixed #15667 -- Added template-based widget rendering.a year ago checkbox_select.htmlFixed #15667 -- Added template-based widget rendering.a year ago clearable_file_input.htmlFixed #29038 -- Removed closing slash from HTML void tags.19 days ago date.htmlFixed #15667 -- Added template-based widget rendering.a year ago datetime.htmlFixed #15667 -- Added template-based widget rendering.a year ago email.htmlFixed #15667 -- Added template-based widget rendering.a year ago file.htmlFixed #15667 -- Added template-based widget rendering.a year ago hidden.htmlFixed #15667 -- Added template-based widget rendering.a year ago input.htmlFixed #29038 -- Removed closing slash from HTML void tags.19 days ago input_option.htmlFixed #15667 -- Added template-based widget rendering.a year ago multiple_hidden.htmlFixed #15667 -- Added template-based widget rendering.a year ago multiple_input.htmlFixed #28059 -- Restored class attribute in of widgets that use …10 months ago multiwidget.htmlFixed #28890 -- Removed newlines between MultiWidget's subwidgets.2 months ago number.htmlFixed #15667 -- Added template-based widget rendering.a … -
Awesome Django
A curated list of awesome Django apps, projects and resources. -
Django Packages : Reusable apps, sites and tools directory
Les plugins communautaires Django (authentification..) -
djangosnippets: Welcome
Liste de snippets pour Django, des portions de code réutilisables par n'importe qui. -
Learn Python Programming Online with the Real Python Team – Real Python
great tutorials, flask, django, REST, lots of other "real world" applications (that aren't necessarily machine learning or 'hackerrank' style data structures and algorithms workouts) -
caioariede/django-location-field: Location field and widget for Django. It supports Google Maps, OpenStreetMap and Mapbox
-
How to Implement Dependent/Chained Dropdown List with Django
-
(1) The Django Test Driven Development Cookbook - Singapore Djangonauts - YouTube
-
CSCI E-33a · Web Programming with Python and JavaScript
design and implementation of web apps with Python, JavaScript, and SQL using frameworks like Flask, Django, and Bootstrap from Harvard -
PythonToDoList · Multi
-
Django Admin Cookbook
-
What I Wish I Knew When I Started Django Development 2018 - Thoughts. Stuff.
-
Mechanicalgirl.com
-
What I Wish I Knew When I Started Django Development 2018 - Thoughts. Stuff.
-
django - How to show different inlines depending of current object field value - Stack Overflow
class MainModelAdmin(models.ModelAdmin): inlines = [RelatedModel1InlineAdmin,RelatedModel2InlineAdmin] def get_inline_instances(self, request, obj=None): #Return no inlines when obj is being created if not obj: return [] unfiltered = super(MainModelAdmin, self).get_inline_instances(request, obj) #filter out the Inlines you don't want if obj.type: return [x for x in unfiltered if isinstance(x,RelatedModel1InlineA... -
sql - Django traceback on queries - Stack Overflow
-
A Complete Beginner's Guide to Django - Part 1
I'm starting today a new tutorial series about the Django fundamentals. It's a complete beginner's guide to start learning Django. The material is divided in... -
9 Django Tips for Working with Databases – Haki Benita – Medium