Re: Django newbie frustrated

2014-02-12 Thread Sean Luke
It gives me an error saying unresolved reference. I will try the django tutorial. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@goog

Re: Django newbie frustrated

2014-02-12 Thread Sean Luke
models.py from django.db import models # Create your models here. class Poll(models.Model): question = models.CharField(max_length=200) pub_date = models.DateTimeField('date published') class Choice(models.Model): poll = models.ForeignKey(Poll) choice = models.CharField(max_le

Re: Django newbie frustrated

2014-02-12 Thread Sean Luke
= 'UTC' USE_I18N = True USE_L10N = True USE_TZ = True # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/1.6/howto/static-files/ STATIC_URL = '/static/' On Wednesday, February 12, 2014 1:21:53 PM UTC-6, Lucas Klassmann wrote: > > Hi Sean