I'm trying to show in one template .html multiple results of my views.py class.
But when i add an other {%block content2 %} in my base.html, i have an error.
Because i have the same url
path('partenaire/', views.OffrePListView.as_view(), name='offreListP'),
path('partenaire/', views.BaseViewP.as_view(), name='showP'),
now i have this
path('partenaire/', views.OffrePListView.as_view(), name='offreListP'),
path('partenaire/show', views.BaseViewP.as_view(), name='showP'),
I want to show many things in one template by using many "contexts".
thanks