1👍
✅
You can add the angular app as a simple template view in Django
views.py
def index(request):
return render(request, 'yourhtml.html', {})
urls.py
....
url(r'^your_url/$', views.index),
....
Then the index.html file can have your angular code
Source:stackexchange.com