I managed to create a URL tag for my index. But right now I\'m confused how to add links to other pages.
I put this on my urls.py
url(r\
Example:
urlpatterns = patterns('', url(r'^$', views.index, name='index'), url(r'^about/$', views.about', name='about'), )
Now, in the html template rendered by your views.index you can have:
views.index
about