My Python Learning Journal
Friday, February 10, 2012
Checklist for enabling Authentication in Django
›
1. Ensure that following session and authentication middleware exists in settings.py 'django.contrib.sessions.middleware.SessionMiddl...
Checklist for enabling the Admin interface in Django
›
1. Make sure you have the following apps in INSTALLED_APPS 'django.contrib.admin' 'django.contrib.auth' 'django.contrib....
Checklist for creating models in Django
›
1. Create an app 2. Add model class to models.py in the app 3. Add the app to installed apps 4. Validate your model python manage.py validat...
Checklist for enabling databases in Django
›
1. Update the DATABASES section in settings.py with details of your database 2. Test the connection >>> from django.db import conne...
Wednesday, October 5, 2011
LPTHW - Exercise 52
›
This is the last exercise in the LPTHW book. In this exercise we will create a web based game engine for the Gothon game (the one we created...
LPTHW - Exercise 51
›
In this exercise, we learn how to deal with form input and a bit about testing web apps. The first thing I did was to change app.py and refa...
LPTHW - Exercise 50
›
In this exercise we will make a web application from the Gothons game, which we made in exercise 46. To simplify the process of making a web...
1 comment:
›
Home
View web version