I\'m building my first site with django 1.7 and am having a hard time figuring out how to pass a variable from a click to a view. My GET is also empty.
My template h
We also use like this:
from django.urls import path from . import views urlpatterns = [ path('articles/2003/', views.special_case_2003), path('articles//', views.year_archive), path('articles///', views.month_archive), path('articles////', views.article_detail), ]