﻿<ViewDefinitions xmlns="http://www.windex.nl/schemas/viewdefinition/2007">
	<Views>
		<View Name="Redenen" HiddenColumnIds="0;3" DefaultOrderColumn="1">
			<Columns>
				<XsltColumn HeaderText="Type" Ordinal="2" OrderBy="ReasonType">
					<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='ReasonType'] = 'Registration'">
										Inschrijving
									</xsl:when>
									<xsl:when test="Column[@name='ReasonType'] = 'SignOut'">
										Afmelding
									</xsl:when>
									<xsl:otherwise>
										Register
									</xsl:otherwise>
								</xsl:choose>
							</xsl:template>
						</xsl:stylesheet>
					</Transform>
				</XsltColumn>
			</Columns>
		</View>
	</Views>
</ViewDefinitions>