| 1234567891011121314151617181920212223242526272829303132333435 |
- <?xml version="1.0" encoding="utf-8" ?>
- <mvcSiteMap xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns="http://mvcsitemap.codeplex.com/schemas/MvcSiteMap-File-3.0"
- xsi:schemaLocation="http://mvcsitemap.codeplex.com/schemas/MvcSiteMap-File-3.0 MvcSiteMapSchema.xsd"
- enableLocalization="true">
- <mvcSiteMapNode title="Accueil" controller="Home" action="Index">
- <mvcSiteMapNode title="Collèges" controller="Colleges" action="Index">
- <mvcSiteMapNode title="Ajout d'un nouveau collège" controller="Colleges" action="Create" />
- <mvcSiteMapNode title="Détail d'un collège" controller="Colleges" action="Details" preservedRouteParameters="id" >
- <mvcSiteMapNode title="Edition d'un collège" controller="Colleges" action="Edit" preservedRouteParameters="id" />
- <mvcSiteMapNode title="Suppression d'un collège" controller="Colleges" action="Delete" preservedRouteParameters="id" />
- <mvcSiteMapNode title="Identité" controller="Identites" action="Details" preservedRouteParameters="id" >
- <mvcSiteMapNode title="Edition de l'identité" controller="Identites" action="Edit" preservedRouteParameters="id" />
- </mvcSiteMapNode>
-
- </mvcSiteMapNode>
- </mvcSiteMapNode>
- <mvcSiteMapNode title="Administration" controller="Admin" action="Index">
- <mvcSiteMapNode title="Types de collège" controller="TypeCollege" action="Index">
- <mvcSiteMapNode title="Création d'un type de collège" controller="TypeCollege" action="Create" />
- <mvcSiteMapNode title="Edition d'un type de collège" controller="TypeCollege" action="Edit" preservedRouteParameters="id" />
- <mvcSiteMapNode title="Suppression d'un type de collège" controller="TypeCollege" action="Delete" preservedRouteParameters="id" />
- </mvcSiteMapNode>
- <mvcSiteMapNode title="Territoires" controller="Territoire" action="Index">
- <mvcSiteMapNode title="Création d'un territoire" controller="Territoire" action="Create" />
- <mvcSiteMapNode title="Edition d'un territoire" controller="Territoire" action="Edit" preservedRouteParameters="id" />
- <mvcSiteMapNode title="Suppression d'un territoire" controller="Territoire" action="Delete" preservedRouteParameters="id" />
- </mvcSiteMapNode>
- </mvcSiteMapNode>
- </mvcSiteMapNode>
- </mvcSiteMap>
|