﻿<ViewDefinitions xmlns="http://www.windex.nl/schemas/viewdefinition/2007">
	<Views>
		<View Name="Activiteiten (beknopt)" HiddenColumnIds="0;3" ColumnWidths="200px;auto;auto"
			  DefaultOrderColumn="1">
			<Columns>
				<XsltColumn HeaderText="Type" OrderBy="Type" Ordinal="2">
					<Transform>
						<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
							<xsl:output method="html" indent="yes"/>
							<xsl:template match="/Row">
								<xsl:choose>
									<xsl:when test="Column[@name = 'Type']/. = 'Absent'">
										Afwezig
									</xsl:when>
									<xsl:when test="Column[@name = 'Type']/. = 'Common'">
										Algemeen
									</xsl:when>
								</xsl:choose>
							</xsl:template>
						</xsl:stylesheet>
					</Transform>
				</XsltColumn>
			</Columns>
		</View>
	</Views>
</ViewDefinitions>