Mvc.sitemap 1.5 KB

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <mvcSiteMap xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://mvcsitemap.codeplex.com/schemas/MvcSiteMap-File-3.0"
  4. xsi:schemaLocation="http://mvcsitemap.codeplex.com/schemas/MvcSiteMap-File-3.0 MvcSiteMapSchema.xsd"
  5. enableLocalization="true">
  6. <mvcSiteMapNode title="Accueil" controller="Home" action="Index">
  7. <mvcSiteMapNode title="Administration" controller="Admin" action="Index">
  8. <mvcSiteMapNode title="Types de collège" controller="TypeCollege" action="Index">
  9. <mvcSiteMapNode title="Création d'un type de collège" controller="TypeCollege" action="Create" />
  10. <mvcSiteMapNode title="Edition d'un type de collège" controller="TypeCollege" action="Edit" preservedRouteParameters="id" />
  11. <mvcSiteMapNode title="Suppression d'un type de collège" controller="TypeCollege" action="Delete" preservedRouteParameters="id" />
  12. </mvcSiteMapNode>
  13. <mvcSiteMapNode title="Territoires" controller="Territoire" action="Index">
  14. <mvcSiteMapNode title="Création d'un territoire" controller="Territoire" action="Create" />
  15. <mvcSiteMapNode title="Edition d'un territoire" controller="Territoire" action="Edit" preservedRouteParameters="id" />
  16. <mvcSiteMapNode title="Suppression d'un territoire" controller="Territoire" action="Delete" preservedRouteParameters="id" />
  17. </mvcSiteMapNode>
  18. </mvcSiteMapNode>
  19. </mvcSiteMapNode>
  20. </mvcSiteMap>