raimund@548: /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz raimund@548: * Software engineering by Intevation GmbH raimund@548: * raimund@548: * This file is Free Software under the GNU GPL (v>=3) raimund@548: * and comes with ABSOLUTELY NO WARRANTY! Check out raimund@548: * the documentation coming with IMIS-Labordaten-Application for details. raimund@548: */ raimund@548: raimund@548: /** raimund@548: * Viewport for the Lada-Client raimund@548: * raimund@548: * The viewport initialises the graphical elements of the application. For dustin@747: * debugging it is possible to initialise other components directly see the raimund@548: * initComponent function. raimund@548: */ raimund@548: Ext.define('Lada.view.Viewport', { raimund@548: extend: 'Ext.container.Viewport', raimund@548: requires: [ dustin@747: 'Lada.view.ProbenPlanungSwitcher', raimund@548: 'Lada.view.FilterPanel', raimund@548: 'Lada.view.grid.FilterResult' raimund@548: ], raimund@548: layout: 'fit', raimund@548: initComponent: function() { raimund@548: this.items = [{ raimund@548: title: '
"
dustin@716: + "Sie sind angemeldet mit der Kennung:"
dustin@716: + "
"
dustin@716: + Lada.username
dustin@716: + "
"
dustin@716: + "Sie sind Mitglied der folgenden "
dustin@716: + "Gruppen:"
dustin@716: + "
"
dustin@716: + Lada.userroles
dustin@716: + "
"
dustin@716: + "
"
dustin@716: + "Die Anmeldung wurde durchgeführt um:"
dustin@716: + "
"
dustin@716: + Ext.Date.format(logintime, 'd.m.Y H:i:s P')
dustin@716: + "