I'm just starting to migrate an app I have to 1.3 from 1.1.
I'm starting to get in the thick of class based views and am blown away, but not really in a good way.
I have some gripes but the specific question here is:
Is this the only way i can use the url template tag with a generic class-based view?
link to a class based view
i.e. having to name every single url entry?
It seems ridiculous to me as one of the fundamental philosophies of Django is DRY and yet here we are.... RY-ing.....
Thanks in advance.
Edit:
So I have https://gist.github.com/1877374
and get the error TemplateSyntaxError Caught NoReverseMatch while rendering: Reverse for 'views.HomeView.as_view' with arguments '()' and keyword arguments '{}' not found.
Am I using this incorrectly?
Tangent:
I'd like to explain a little bit more about why I believe we are RY-ing if we have to name every single entry in the urls.py file
my urls.py typically looks like https://gist.github.com/1877462
I understand completely about decoupling.
The point here is that we have the ability to do so when required. I absolutely use the name feature, when i need to. Otherwise, why would i want to spend the time and energy to redundently add url to every entry and name every entry when often they will be the same as the name of the class/funciton in views.py?
Maybe this should be branched into a seperate question on SO.