Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
Using Webpack transparently with Django + hot reloading React components as a bonus - Owais Lone
-
miki725/django-url-filter: Django URL Filter provides a safe way to filter data via human-friendly URLs.
-
RaiNmap Container – JGamblin.com
-
Class-based views | Django documentation | Django
-
Running Django on Container Engine | Python | Google Cloud Platform
-
django-mssql.pdf
-
Upgrading templates to Django 1.8 | Django documentation | Django
-
Welcome to django-allauth! — django-allauth 0.27.0 documentation
-
Why not use Admin for everything ? : django
-
elbuo8/sendgrid-django: Simple django backend to send email through SendGrid
from django.core.mail import send_mail from django.core.mail import EmailMultiAlternatives send_mail("Your Subject", "This is a simple text email body.", "Yamil Asusta ", ["yamil@sendgrid.com"]) # or mail = EmailMultiAlternatives( subject="Your Subject", body="This is a simple text email body.", from_email="Yamil Asusta ", to=["yamil@sendgrid.com"], headers={"Reply-To": "support@sendgrid.com"} ) mail.attach_alternative("This is a simple HTML email body", "text/html") mail.send() -
NoriPyt
-
So you want a new admin? « Jacob Kaplan-Moss
-
Writing your first Django app, part 2 | Django documentation | Django
Activating models¶ That small bit of model code gives Django a lot of information. With it, Django is able to: Create a database schema (CREATE TABLE statements) for this app. Create a Python database-access API for accessing Question and Choice objects. But first we need to tell our project that the polls app is installed. -
How to make a generic relation filterable
def generic_filter(person_id, model, target): return model.objects.extra(where=[''' id in (select object_id from {app_label}_{target} where content_type_id = (select id from django_content_type where model = '{model}') and person_id = {person_id})'''.format(app_label=os.path.basename(os.path.dirname(__file__)), model=model.__name__.lower(), target=target, person_id=person_id)]) -
Welcome to Tastypie! — Tastypie 0.13.3 documentation
Tastypie is a webservice API framework for Django. It provides a convenient, yet powerful and highly customizable, abstraction for creating REST-style interfaces. -
Comparing Wagtail, Django CMS and Mezzanine - YouTube
-
Django JET – admin interface
-
ContentTypes
-
10 Reasons why you should invest in Django
Django, which is one of the most popular and widely used high-level web frameworks written in Python programming language. The ... -
Django Tips #13 Using F() Expressions
In the Django QuerySet API, F()expressions are used to refer to model field values directly in the database. Let’s say you have a Product class with aprice field, and you want to increase the price of all products in 20% -
How to Create a One Time Link
Django uses a very interesting approach to generate the Password reset tokens. -
GitHub - mikery/django-akismet: Akismet spam checks for your Django models
-
关于 django 项目布局 - V2EX
Python - pc10201 - 《 two scoops django 》推荐了https://github.com/pydanny/cookiecutter-django另外还有 mozilla 公司布局模板 -
Awesome forms with django-crispy-forms - Bixly's BlogBixly's Blog
-
Best practices working with Django models in Python