I have an app in my Django project that called Stressz. So the url of my app is:
http://localhost:8000/stressz/
http://localhost:8000/stressz/siker
http://localhost:8000/stressz/attitud
How can I change the url without changing the name of the app from the above url to something like this:
http://localhost:8000/mpa
http://localhost:8000/mpa/siker
http://localhost:8000/mpa/attitud
urls.py
app_name = 'stressz'
urlpatterns = [
path('', views.index, name='index'),
path('siker', views.siker, name='siker'),
path('attitud', login_required(views.AttitudCreateView.as_view()), name='attitud_item'),
...