[Fixed]-Django and Angular routing

1👍

It would be helpful if you use

xxx/dashboard.html#/

then in the route provider

$routeProvider
.when('/', {
    templateUrl: '#/pages/dash_home.html',
    controller: 'dashController'
})

It will look for the # and then attach the url with it.

👤Sajal

Leave a comment