Details are available on the Django project weblog:
https://www.djangoproject.com/weblog/2023/nov/01/security-releases/
--
You received this message because you are subscribed to the Google Groups "Django
users" group.
To unsubscribe from this group and stop receiving emails from it, send an em
urlpatterns = [
path('', views.home, name ='home'),
path('home/', views.allTurfs,name = 'allturfs'),
path('profile/', views.dashboard, name = 'profile'),
path('about/', views.about, name = 'about'),
path('add_venue/', views.add_Turf, name = 'add_turf'),
path('/', views.allTurfs, name='turf_by_place
Hi Check your urls.py code
On Wed, Nov 1, 2023 at 3:53 PM Sudharsan wrote:
> urlpatterns = [
> path('', views.home, name ='home'),
> path('home/', views.allTurfs,name = 'allturfs'),
> path('profile/', views.dashboard, name = 'profile'),
> path('about/', views.about, name = 'about'),
> path('add_
I think the problem is in the data into turf_id. Are you sure that turf_id
contains only integer value? it's strange the problem with argument:
'('',)' - try to verify the data passed with turf_id if are correct...
Il giorno mer 1 nov 2023 alle ore 16:05 Adesewa Lola <
adesewalola2...@gmail.com> h
thank you! i think this is because you are not looping or have a turf_id in
the template. by 'loop' or have you tried '/add_time_lot//'?
On Wed, Nov 1, 2023 at 10:53 PM Sudharsan wrote:
> urlpatterns = [
> path('', views.home, name ='home'),
> path('home/', views.allTurfs,name = 'allturfs'),
> p
Hi, all.
I have a Submission model with a many-to-many relationship with a Market
model and explicitly defined a SubmissionMarket model as intermediary
model. I have defined
Submission inlines in a ModelAdmin class (used by Django admin) and defined
the markets field as the first one in the fie
6 matches
Mail list logo