Django Tutorials: NoReverseMatch at /polls/1/vote/

2014-03-20 Thread wasingej
I am trying to create the project described by the Django Tutorials. However, I have reached a problem that I am stuck on after implementing the voting forms described in tutorial 4 (https://docs.djangoproject.com/en/1.6/intro/tutorial04/). When I run my website and go to the url:http://local

ForeignKey Field does not exist?

2014-03-13 Thread wasingej
ListEntry( name = "Physics 265 email list", date = datetime(2014,1,1), ) le2.save() oe1 = OwnerEntry( name = 'wasingej', list = le1, ) oe1.save() oe2 = OwnerEntry( name = 'wasingej', list = le2, ) oe2.save() oe3 = OwnerEntry( name = 'd

Question about populating user data with Django-cas

2014-02-27 Thread wasingej
Hi guys, I'm having trouble getting the example code that is posted in the overview document for django-cas to work. Here is my relevant code: *cas_backend.py:*from django_cas.backends import CASBackend class PopulatedCASBackend(CASBackend): def authenticate(self, ticket, service):

Printing things to the server console in Django?

2014-02-21 Thread wasingej
Hi guys. I'm pretty new to Django and I'm trying to figure out how I can print out information to my console that I started my web application on using "python manage.py runserver". Thanks, Jared -- You received this message because you are subscribed to the Google Groups "Django users" grou

Re: Newbie question about django-cas

2014-02-19 Thread wasingej
The problem is fixed. Thanks esauro :) Jared -- 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...@googlegroups.com. To post to this group,

Newbie question about django-cas

2014-02-19 Thread wasingej
Hello. I am trying to put together a little test application which allows a user to log in to a CAS server and then redirects them back to the site after they have logged in. I have followed the instructions on this page: https://bitbucket.org/cpcc/django-cas/overview. The URL for my serv