<mvc:View xmlns:mvc="sap.ui.core.mvc"
		  xmlns="sap.m" controllerName="sap.ui.fl.support.apps.contentbrowser.controller.ContentDetailsEdit"
		  xmlns:f="sap.ui.layout.form">
	<Page title="{path: 'selectedContent>/', formatter: '.oDataUtils.formatItemTitle'}">
		<f:SimpleForm
				minWidth="1024"
				maxContainerCols="1"
				editable="false"
				layout="ResponsiveGridLayout"
				labelSpanL="12"
				labelSpanM="12"
				columnsL="1"
				columnsM="1">
			<TextArea id="dataTextArea" class="codeBlock" rows="50" value="{selectedContent>/data}" />
		</f:SimpleForm>
		<footer>
			<Toolbar>
				<ToolbarSpacer />
				<Button text="{i18n>save}" press=".onSave" />
				<Button text="{i18n>cancel}" press=".onCancel" />
				<CheckBox id="activeVersionCheckBox" text="{i18n>onActiveVersion}" valueState="Warning" visible="false"/>
			</Toolbar>
		</footer>
	</Page>
</mvc:View>