From 8bcc7692970a6f3b1df6167fd69db7b80ba84044 Mon Sep 17 00:00:00 2001 From: usmannasir <01-134132-158@student.bahria.edu.pk> Date: Mon, 9 Apr 2018 08:47:14 +0500 Subject: [PATCH] Remove Version Management from normal user. --- .../baseTemplate/custom-js/system-status.js | 11 ++-- .../templates/baseTemplate/homePage.html | 64 ------------------- .../templates/baseTemplate/index.html | 12 +--- baseTemplate/views.py | 32 ---------- install/install.py | 4 +- loginSystem/views.py | 2 +- plogical/modSec.py | 18 ++++-- .../baseTemplate/custom-js/system-status.js | 11 ++-- tuning/templates/tuning/liteSpeedTuning.html | 5 +- 9 files changed, 33 insertions(+), 126 deletions(-) diff --git a/baseTemplate/static/baseTemplate/custom-js/system-status.js b/baseTemplate/static/baseTemplate/custom-js/system-status.js index bb03a3148..e0ca09fb0 100644 --- a/baseTemplate/static/baseTemplate/custom-js/system-status.js +++ b/baseTemplate/static/baseTemplate/custom-js/system-status.js @@ -58,7 +58,7 @@ app.filter('getwebsitename', function() { app.controller('systemStatusInfo', function($scope,$http,$timeout) { - getStuff(); + //getStuff(); function getStuff() { @@ -109,10 +109,10 @@ app.controller('adminController', function($scope,$http,$timeout) { $("#serverIPAddress").text(response.data.serverIPAddress); - if (response.data.admin_type != "Administrator") + if (response.data.admin_type !== "Administrator") { - if(response.data.admin_type != "Reseller") { + if(response.data.admin_type !== "Reseller") { $("#normalUser").hide(); $("#normalUserA").hide(); $("#normalUserB").hide(); @@ -140,6 +140,7 @@ app.controller('adminController', function($scope,$http,$timeout) { $("#createWebsite").hide(); $("#modifyWebSite").hide(); $("#deleteWebsite").hide(); + $("#versionManagement").hide(); } } @@ -156,7 +157,7 @@ app.controller('adminController', function($scope,$http,$timeout) { app.controller('loadAvg', function($scope,$http,$timeout) { - getStuff(); + //getStuff(); function getStuff() { @@ -179,7 +180,7 @@ app.controller('loadAvg', function($scope,$http,$timeout) { console.log("not good"); } - $timeout(getStuff, 2000); + //$timeout(getStuff, 2000); } }); diff --git a/baseTemplate/templates/baseTemplate/homePage.html b/baseTemplate/templates/baseTemplate/homePage.html index b5a8fdbac..d80685b3b 100644 --- a/baseTemplate/templates/baseTemplate/homePage.html +++ b/baseTemplate/templates/baseTemplate/homePage.html @@ -89,70 +89,6 @@ -