Dynamic forms and related models.

2013-05-08 Thread noodlygod
Hello all, I'm attempting to create an RPG character generator using Django. My models are as follows: from django.db import models class Character(models.Model): name = models.CharField(null=False, blank=False, max_length=60) age = models.IntegerField() height = models.CharField(nul

Re: connecting problems to a DB using psycopg2

2013-05-08 Thread noodlygod
Hello, I'm not really an expert and everyone's configuration is different so rather than address your problem directly I'll provide a guide for how I got Postgres/Django to work together on Windows. 1. Download the Postgres installer found here