[Fixed]-Create angular page in Django to consume data from JSON

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

👤Newtt

Leave a comment