<mvc:View controllerName="sap.hanacli.systemInfo.controller.App" height="100%" width="100%"
	xmlns:l="sap.ui.layout"
	xmlns:f="sap.ui.layout.form"
	xmlns:mvc="sap.ui.core.mvc"
	xmlns:core="sap.ui.core"
	xmlns="sap.m">
	
	<ScrollContainer
		height="100%"
		width="100%"
		vertical="true"
		focusable="true">
 	<f:SimpleForm id="SimpleFormToolbar" editable="false" layout="ResponsiveGridLayout" labelSpanXL="4" labelSpanL="3" labelSpanM="4" labelSpanS="12" adjustLabelSpan="false" emptySpanXL="0" emptySpanL="4" emptySpanM="0" emptySpanS="0" columnsXL="2" columnsL="1" columnsM="1" singleContainerFullSize="false" ariaLabelledBy="Title1">
		<f:toolbar>
			<Toolbar id="TB1">
				<Title id="Title1" text="{i18n>appTitle}"/>
				<ToolbarSpacer />
			</Toolbar>
		</f:toolbar>
		<f:content>

			<Toolbar ariaLabelledBy="Title2">
				<Title id="Title2" text="{i18n>currentSession}"/>
				<ToolbarSpacer />
			</Toolbar>

			<Label text="{i18nReuse>user}" />
			<Input value="{/user/0/CURRENT_USER}" />
			<Label text="{i18nReuse>scheam}" />
			<Input value="{/user/0/CURRENT_SCHEMA}">
			</Input>



			<Toolbar id="TB3">
				<Title id="Title3" text="{i18n>versionInfo}"/>
				<ToolbarSpacer />
			</Toolbar>


			<Label text="{i18n>system} / {i18n>databaseName}" />
			<Input value="{/version/SYSTEM_ID}">
				<layoutData>
					<l:GridData span="XL2 L1 M3 S4" />
				</layoutData>
			</Input>
			<Input value="{/version/DATABASE_NAME}">
			</Input>

			<Label text="{i18nReuse>host}" />
			<Input value="{/version/HOST}" />

			<Label text="{i18n>startTime}" />
			<Input value="{/version/START_TIME}" />

			<Label text="{i18nReuse>version}" />
			<Input value="{/version/VERSION}" />

		</f:content>
	</f:SimpleForm>

		<Table id="overviewTable" items="{/overview}">
			<headerToolbar>
				<OverflowToolbar>
					<Title text="{i18n>systemOverview}" level="H2"/>
					<ToolbarSpacer/>
				</OverflowToolbar>
			</headerToolbar>
			<columns>
				<Column id="SECTION" width="12em">
					<Text text="{i18nReuse>section}" />
				</Column>
				<Column id="Value" minScreenWidth="Tablet" demandPopin="true">
					<Text text="{i18n>name}" />
				</Column>
				<Column id="STATUS" minScreenWidth="Tablet" demandPopin="true">
					<Text text="{i18n>status}" />
				</Column>

			</columns>
			<items>
				<ColumnListItem>
					<cells>
						<Text text="{SECTION}" />
						<ObjectIdentifier title="{NAME}" text="{VALUE}" class="sapUiTinyMarginTopBottom" />
						<Text text="{STATUS}" />
					</cells>
				</ColumnListItem>
			</items>
		</Table>
	</ScrollContainer>
</mvc:View>