﻿<ViewDefinitions xmlns="http://www.windex.nl/schemas/viewdefinition/2007">
	<Views>
		<View Name="Standaard" ColumnWidths="50px;80px;auto;auto;auto;auto" HiddenColumnIds="0;7"
			  DefaultOrderColumn="3">
			<Columns>
				<XsltColumn HeaderText="Status" OrderBy="Status" Ordinal="6">
					<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 = 'OrganizationRole']/. = 'CoFinancer'">
										Cofinancier
									</xsl:when>
									<xsl:when test="Column[@name = 'OrganizationRole']/. = 'SubsidyGiver'">
										Subsidiegever
									</xsl:when>
									<xsl:when test="Column[@name = 'OrganizationRole']/. = 'Principal'">
										Opdrachtgever
									</xsl:when>
								</xsl:choose>
							</xsl:template>
						</xsl:stylesheet>
					</Transform>
				</XsltColumn>
			</Columns>
		</View>
	</Views>
</ViewDefinitions>