Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
django - Elegant way of fetching multiple objects in custom order - Stack Overflow
-
Why this? — django-politico-civic 0.0.0-alpha documentation
-
Official Django REST Framework Tutorial - A Beginners Guide - William S. Vincent
-
bfirsh/django-docker-cloud-template: A template for creating Django applications that run on Docker Cloud
-
un1t/django-cleanup: Automatically deletes old file for FileField and ImageField. It also deletes files on models instance deletion.
-
Microservices with Django: Events with Publish/Subscribe
-
Elegant Database Migrations on ECS – Instawork Engineering
-
Iterating with Simplicity: Evolving a Django app with Intercooler.js
-
Packages to improve Django admin
-
How To Send Web Push Notifications from Django Applications | DigitalOcean
-
Update Django session variable in javascript? - Stack Overflow
def update_session(request): if not request.is_ajax() or not request.method=='POST': return HttpResponseNotAllowed(['POST']) request.session['mykey'] = 'myvalue' return HttpResponse('ok') -
Django-Blog-Zinnia’s documentation! — Django Blog Zinnia 0.19.1.dev0 documentation
django blog zinnia -
Optimizing Django Admin Paginator – Haki Benita – Medium
-
Tailwind CSS - A Utility-First CSS Framework for Rapid UI Development
-
add DRF to existig Django
-
Disabling Error Emails in Django | Lincoln Loop
-
Django Tutorial: The Local Library website - Learn web development | MDN
-
Modern Django — Part 0: Introduction and Initial Setup – Medium
-
django-celery实现Django的定时任务 – 三明智Club
-
Deployment checklist | Django documentation | Django
-
How do I use pagination with Django class based generic ListViews? - Stack Overflow
-
django - ListView and Form on the same view, using the form to filter the results - Stack Overflow
-
Example of using django-sorting, django-filter and django-pagination together · GitHub
{% load pagination_tags %} {% load sorting_tags %} {% block body %} {% autosort filter.qs as sorted_objects %} {% autopaginate sorted_objects 10 as object_list %} {% for object in object_list %} {{ object }} {% endfor %} {% paginate %} {% endblock %} {% block sidebar %} Sort by {% anchor firstfield "First Field" %} {% anchor otherfield "Other Field" %} {{ filter.form.as_p }} {% endblock %} -
nathan-osman/django-archive: Management command for creating compressed archives of Django projects, including database tables and uploaded media.
-
GitHub - hgezim/debug-inspector-panel: A django-debug-toolbar panel to get information about certain variables.