diff --git a/baseTemplate/templates/baseTemplate/index.html b/baseTemplate/templates/baseTemplate/index.html index 0ee2436eb..70a269a00 100755 --- a/baseTemplate/templates/baseTemplate/index.html +++ b/baseTemplate/templates/baseTemplate/index.html @@ -90,7 +90,8 @@ - + {% block styles %} {% endblock %} @@ -115,11 +116,6 @@ -
- - - -
@@ -174,7 +170,6 @@
-
@@ -203,60 +198,20 @@
-
- -
-
- {$ one $} - {$ two $} - {$ three $} @@ -324,20 +279,19 @@ -
+
+
- - -
+
@@ -740,7 +694,7 @@ {% endif %} - + {% if admin %} @@ -1047,10 +1001,8 @@ {% endif %} - -
@@ -1061,13 +1013,8 @@
- - - - - @@ -1084,7 +1031,6 @@ - diff --git a/plogical/httpProc.py b/plogical/httpProc.py index 2224101a4..20e0a4604 100755 --- a/plogical/httpProc.py +++ b/plogical/httpProc.py @@ -19,6 +19,7 @@ class httpProc: from plogical.acl import ACLManager currentACL = ACLManager.loadedACL(userID) + admin = Administrator.objects.get(pk=userID) ### Permissions Check @@ -38,6 +39,7 @@ class httpProc: ipData = f.read() ipAddress = ipData.split('\n', 1)[0] self.data['ipAddress'] = ipAddress + self.data['fullName'] = '%s %s' % (admin.firstName, admin.lastName) self.data.update(currentACL)