Modifying your Models in Django isn’t as clear cut as it seems. Say you’ve already syncdb’d a Person model with first_name, and you want to add last_name to it,…
In this tutorial we’ll figure out how to get beautiful data in your Admin to your Template and go over the basic premise behind templating in Django.
In this tutorial I’ll show you how to get a PostgreSQL database working on Windows for Django and we’ll create our first very, very, simple Model to add to…
Today we’ll go over how you actually get http://localhost:8000/foo to display the Foo template with render_to_response.
In this screencast, I’ll primarily explore the settings.py file and give a brief and incomplete overview of how Django works. I know this one goes long and a bit…
From Jeff Hui @ Nettuts: http://net.tutsplus.com/tutorials/python-tutorials/diving-into-django/ (7:30) with .replace(‘\\’,’/’) added on so Windows backslashy directories are fixed (Django doesn’t like that sorta thing). Just put this around the top…
Welcome to the adventure! In this level, you will… Download and Install Python 2.* Make “python” usable in your Command Prompt Install setuptools and use easy_install Install pip Install…
I want to be able to develop web-apps on the fly. I’ve done a lot of asking around and all roads lead to Python/Django or Ruby/Rails. After toying around…