Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
Django Filters - or? - Stack Overflow
-
Opbeat: ops platform for Django devs
-
Material Design for Django Forms and Admin
-
rossp/django-helpdesk
-
viewflow/django-material
django-material - Material Design for django forms and admin -
Python Agent 2.50.0.39 | New Relic Documentation
If you’re using the latest version of Django(v1.8) then use the latest version of newrelic agent to instrument it. -
emacsway / django-versioning — Bitbucket
-
How To Install and Configure Django with Postgres, Nginx, and Gunicorn | DigitalOcean
-
Material Design for Django Forms and Admin
Material design for django forms and admin -
Wagtail CMS - elegant, easy, open source content management
-
Caktus Group : Using Amazon S3 to Store your Django Site's Static and Media Files
-
Untitled (http://www.amazon.com/gp/product/1508748128/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=1508748128&linkCode=as2&tag=pythonweekly-20&linkId=XBDQ5AYZMSXZNUWS&utm_content=buffer285f2&utm_medium=social&utm_source=twitter.com&utm_camp
RT @PythonWeekly: High Performance Django #Python #Django -
The Web framework for perfectionists with deadlines | Django
-
Opbeat
-
Learning Django by example - Programmers Stack Exchange
13 series of screencasts creating a Django web app: http://showmedo.com/videotutorials/series?name=PPN7NA155 Django by Example: code walkthroughs for several useful apps http://www.lightbird.net/dbe/ -
Starting a Django Project - Real Python
Answering the question, “How do I setup a Django (1.5, 1.6, or 1.7) Project from scratch?” -
Model field reference | Django documentation | Django
This document contains all the API references of Field including the field options and field types Django offers. -
The Django admin site | Django documentation | Django
One of the most powerful parts of Django is the automatic admin interface. It reads metadata in your model to provide a powerful and production-ready interface that content producers can immediately use to start adding content to the site. In this document, we discuss how to activate, use and customize Django’s admin interface. -
Resources for learning Django. Want to learn Django? Start here.
This is my collection of web resources for folks who are just getting started with Django. The list contains what I believe is the absolute essential for the total n00b. I added a link to more than 170 videos on various Django topics as a bonus just to give newcomers an idea of how much information about Django it’s out there. What are you waiting for? Get started. -
Django Rest Framework - class based views - Real Python
-
Django Packages : CMS
Mezzanine, django-cms -
path - No module named django.core when creating project in virtualenv - Stack Overflow
I could not get any other stack overflow answers to work either. Getting a venved Django stack running on Win64 is a bit of an ordeal. But, I found an answer that worked for me here: http://samudranb.com/2012/06/02/how-to-setup-a-djangopython-development-env-on-windows/ Try running from an admin command prompt: ftype Python.File="[your venv path]\Scripts\python.exe" "%1" %* Just be sure to set it back to the original value when you're done. -
How to setup a Django / python development env on Windows | Samudra Neelam Bhuyan
Install Python Download and install the latest Python installer from here Change the %PATH% variable to add the path to the python.exe file Install VirtualEnv Download virtualenv from here Install virtualenv with the command: python virtualenv.py YOUR_ENVIRONMENT Activate the new virtual env by : YOUR_ENVIRONMENT\Scripts\activate.bat Add the paths to the ‘Scripts’ and ‘Lib’ folders in %PATH%. It should be of the form: E:\Python27\;E:\Python27\YOUR_ENVIRONMENT\Lib\;E:\Python27\YOUR_ENVIRONMENT\Scripts; Install Django Make sure your virtual env is activated Install Django by: pip install django In case of the following error: File "E:\Python27\YOUR_ENVIRONMENT\Scripts\django-admin.py", line 2, in from django.core import management ImportError: No module named django.core Check the folder permissions of the “django” folder inside “YOUR_ENVIRONMENT\Lib\site-packages“. Remove any read-only permission settings. Use this command to use the “correct” Python (the one inside the virtual environment) to open the .py files: ftype Python.File="E:\Python27\YOUR_ENVIRONMENT\Scripts\python.exe" "%1" %* Run “django-admin.py startproject YOUR_PROJECTNAME”. If this works, that means Django is installed fine. -
Djangonaut Lost in Space | Django is my passion. All in magical pink. Or green.
Django is my passion. All in magical pink. Or green. -
Django and Windows | Djangonaut Lost in Space
I’ve been developing with Django and Windows over three years now and along the road I’ve developed few practical solutions for my team to make developers life a slightly easier. My environment consists of few key parts: Python, setuptools, pip, virtualenv and TCC/LE. Python should be obvious. Download and install it be sure to install 32 bit version. 64 bit version works but you will have great deal of troubles with 3rd party libs. I assume for the rest of the guide that you installed Python 2.7 under C:\Python27 After installing Python you should install TCC/LE. TCC/LE in short is replacement for CMD.EXE – a command prompt replacement. It has lot of nice features. Now create your working directory, for the rest of the guide I assume that C:\django is working directory containing all virtual envs etc. Under working directory create subdirectory config. In this directory create startup file for TCC/LE called tcstart.btm