Mercurial > lada > lada-client
diff app/view/Viewport.js @ 716:b400629a2575
Added Logininformation to a Popup in Viewport
author | Dustin Demuth <dustin@intevation.de> |
---|---|
date | Wed, 08 Apr 2015 17:03:59 +0200 |
parents | 817524db4017 |
children | 3ffecbce17d6 |
line wrap: on
line diff
--- a/app/view/Viewport.js Wed Apr 08 15:28:25 2015 +0200 +++ b/app/view/Viewport.js Wed Apr 08 17:03:59 2015 +0200 @@ -45,16 +45,28 @@ text: 'About', action: 'about' }, { - text: 'Zeit', + text: 'Anmeldeinformationen', handler: function(){ - thetime = new Date(); - Ext.Msg.alert("Zeit", "Laut Ihrer lokalen Systemuhr ist es\n"+ - thetime.toString() + "\n\n" + - "Das entspricht der Serverzeit:\n" + - thetime.toUTCString() + "\n\n" + - "Alle Messwerte werden in GMT/UTC auf dem Server gespeichert. " + - "Ihr Webbrowser rechnet diese automatisch um." - ); + logintime = new Date(Lada.logintime); + Ext.Msg.alert("Anmeldeinformationen", + "<p>" + + "Sie sind angemeldet mit der Kennung:" + + "<br />" + + Lada.username + + "</p>" + + "<p>" + + "Sie sind Mitglied der folgenden " + + "Gruppen:" + + "<br />" + + Lada.userroles + + "</p>" + + "<p>" + + "<br/>" + + "Die Anmeldung wurde durchgeführt um:" + + "<br />" + + Ext.Date.format(logintime, 'd.m.Y H:i:s P') + + "</p>" + ); } } ]