I'm trying to use the UI router to display a different template for the following path. I'm adding the full URL so you can see exactly what the intention is.
Basically I want the router to account for the actual URL path, but right now no template gets detected and the state provider redirects to / instead.
http://localhost/dashboard/#home
And this is what goes in to the $stateProvider.
.state('dashboard.home', {
url: '/home',
path: 'dashboard',
templateUrl: '/partials/dashboard/home'
})
path). Do you have a reference where I can read about it?