View function and URL Conf basic question

2014-02-26 Thread ApathyBear
I am brand new to Django, so bare with me. I am a little confused with this example shown in the Django book: Here is my urls.py: from django.conf.urls.defaults import *from mysite.views import hello, current_datetime, hours_ahead urlpatterns = patterns('', url(r'^hello/$', hello), url(

Using Django without templates?

2014-02-26 Thread ApathyBear
I was briefly talking with a developer from Google whom I had met. He mentioned something that I hadn't really gotten a chance to ask him more about He told me to be careful with django templates because in terms of scale, they can cause problems and almost always need to be re-written. Rather

Django: Having trouble with nesting URLS

2014-03-27 Thread ApathyBear
I posted this on stack, but I feel like I would get better help here: I am trying to connect my urls together after installing the django-registration app via pip install. My main project is called Club , here is *club/club/