[Answered ]-Send extra parameter to django routes in include

1👍

It will send it to all views that are included, so you can implement this with:

path('<str:lang>/auth/', include('apps.auth.routes'), name='auth_routes')

Leave a comment