Can someone show me an example (plus a small explanation) of how {% load url from future %} and namespace concept works?
I'm new in python and django and i need to learn how not to make hardcoded urls and also how to use other functions like reverse().
Here is an example of what i'm trying to do:
urls.py
urlpatterns = patterns('',
"""
This one is what i did first but works with hardcoded url inside
top-navigator.html:
url(r'^books/$', 'books.views.book_index'),
The next one is what i'm trying to do:
(but of course is not correct)
"""
url(r'^books/$', include('books.views.book_index', namespace='books')),
)
top-navigator.html
when i'm trying to run the server is shows the error:
Caught ImportError while rendering: No module named book_index
{% load url from future %}
<div class="navbar-inner">
<ul class="nav">
<li class="active"><a href="/">Home</a></li>
<li><a href="{% url 'books:book_index' %}">Books</a></li>
<li><a href="/authors">Authors</a></li>
<li><a href="/publishers">Publishers</a></li>
<li><a href="/contact">Contact</a></li>
</ul>
</div>
What can i do in order do to something similar for all the links?
Thanks in advance.
