'use strict'; angular.module('adagios.tactical.status_overview', ['ngRoute' ]) .controller('TacticalStatusOverViewCtrl', ['$scope', '$http', function ($scope, $http) { $scope.hosts = { "count": 104, "problems": 14 }; $scope.services = { "count": 1126, "problems": 42 }; }]) .directive('statusoverview', function () { return { restrict: 'E', templateUrl: "tactical/status_overview/status_overview.html" }; });