Re: Django newbie frustrated

2014-02-13 Thread Lucas Klassmann
waveride, You are alright! But he have a two erros. First, he loaded http://127.0.0.1:8000/ but dont have urls.py configured for this. Second, he loaded http://127.0.0.1:8000/admin/ and is showed a exception because 'django' not found a 'polls' application, because 'django' in recent versions,

Re: Django newbie frustrated

2014-02-13 Thread waverider
Is it just me or everything is actually working as expected? You're requesting http://127.0.0.1:8000/, while you define /polls/ and that tutorial specifically instructs to access http://127.0.0.1:8000/polls/ - http://andreias.ro -- You received this message because you are subscribed to the Go

Re: Django newbie frustrated

2014-02-12 Thread Lucas Klassmann
I think that the best way for learn django is get a simple code editor and use command line. No use IDE yet, until you feel reliance with django. Greetings. On Wed, Feb 12, 2014 at 5:59 PM, Sean Luke <192.sean.l...@gmail.com> wrote: > It gives me an error saying unresolved reference. I will t

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 Lucas Klassmann
Sean, When you read a tutorial about django, check the version you using and version used on the tutorial. Check again: http://www.jetbrains.com/pycharm/quickstart/django_guide.html This guide is for *1.4.3* and you using django *1.6.2* Always check the version, sometimes has some incompatibili

Re: Django newbie frustrated

2014-02-12 Thread Lucas Klassmann
Try change *polls* to *MyDjangoApp.polls* in *INSTALLED_APPS*. -- Lucas Klassmann Desenvolvedor de Software Email: lucasklassm...@gmail.com Web site: http://www.lucasklassmann.com -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe

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
Here is settings.py """ Django settings for MyDjangoApp project. For more information on this file, see https://docs.djangoproject.com/en/1.6/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/1.6/ref/settings/ """ # Build paths inside the p

Re: Django newbie frustrated

2014-02-12 Thread Lucas Klassmann
Hi Sean! You has added *polls* inside of *INSTALLED_APPS* in the *settings.py*? You can show me other source files? Greetings On Wed, Feb 12, 2014 at 5:13 PM, Sean Luke <192.sean.l...@gmail.com> wrote: > Here is the screenshot of my file structure and admin.py > > > On Wednesday, February 12,