Django – using reverse() on Class-based views
I have the following urls configuration in my Django project: urlpatterns = patterns(”, (r’^my-view$’, MyViewClass.as_view()), ) Is there a way to use the reverse() function to get the url of …
Online Free Tutorials Guruji Guide & Materials – Solved Questions Answers
I have the following urls configuration in my Django project: urlpatterns = patterns(”, (r’^my-view$’, MyViewClass.as_view()), ) Is there a way to use the reverse() function to get the url of …