4👍
✅
You’ve namespaced your app urls, so you need to use that namespace when reversing them:
reverse('vehicle_movement:index')
But you’ve also got two paths with the same name in your app urls, which will cause conflicts, if not an error. Delete one of them.
- [Django]-Give a bytes to reportlab.lib.utils.ImageReader
- [Django]-How to calculate average of some field in Django models and send it to rest API?
- [Django]-Writing script tag outside or inside block?
- [Django]-How to Force Current User to a Field in Django Rest Framework
Source:stackexchange.com