main dashboard structure started

This commit is contained in:
arnaucode
2017-07-25 20:49:05 +02:00
parent 4daf67d270
commit c8d7832310
12 changed files with 825 additions and 0 deletions

5
views/user/user.html Normal file
View File

@@ -0,0 +1,5 @@
<p>This is the partial for view 2.</p>
<p>
Showing of 'interpolate' filter:
{{ 'Current version is v%VERSION%.' | interpolate }}
</p>

14
views/user/user.js Normal file
View File

@@ -0,0 +1,14 @@
'use strict';
angular.module('app.user', ['ngRoute'])
.config(['$routeProvider', function($routeProvider) {
$routeProvider.when('/user', {
templateUrl: 'views/user/user.html',
controller: 'UserCtrl'
});
}])
.controller('UserCtrl', [function() {
}]);