incremental
diff --git a/static/js/versionController.js b/static/js/versionController.js
new file mode 100644
index 0000000..082ccf8
--- /dev/null
+++ b/static/js/versionController.js
@@ -0,0 +1,16 @@
+angular.module('bmcApp').controller('versionController', function($scope, Restangular) {
+
+ var system_status = Restangular.one('systeminfo').get().then(function(system_status) {
+ $scope.system_status = system_status;
+ });
+
+ $scope.host_power_on= true;
+ $scope.rmm_module_installed= true;
+ $scope.bmc_available= true;
+ $scope.bmc_build_date= new Date(2016, 0, 1, 2, 3, 4, 567);
+ $scope.bios_build_number = "D0191";
+ $scope.bmc_build_number = "96.37";
+ $scope.bmc_build_extended = "e04989f7";
+ $scope.bmc_backup_build_number = "96.37";
+ $scope.bmc_backup_build_extended = "e04989f7";
+});
\ No newline at end of file