Mvc.sitemap 2.1 KB

123456789101112131415161718192021222324252627282930
  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="Collèges" controller="Colleges" action="Index">
  8. <mvcSiteMapNode title="Ajout d'un nouveau collège" controller="Colleges" action="Create" />
  9. <mvcSiteMapNode title="Détail d'un collège" controller="Colleges" action="Details" preservedRouteParameters="id" >
  10. <mvcSiteMapNode title="Edition d'un collège" controller="Colleges" action="Edit" preservedRouteParameters="id" />
  11. <mvcSiteMapNode title="Suppression d'un collège" controller="Colleges" action="Delete" preservedRouteParameters="id" />
  12. </mvcSiteMapNode>
  13. </mvcSiteMapNode>
  14. <mvcSiteMapNode title="Administration" controller="Admin" action="Index">
  15. <mvcSiteMapNode title="Types de collège" controller="TypeCollege" action="Index">
  16. <mvcSiteMapNode title="Création d'un type de collège" controller="TypeCollege" action="Create" />
  17. <mvcSiteMapNode title="Edition d'un type de collège" controller="TypeCollege" action="Edit" preservedRouteParameters="id" />
  18. <mvcSiteMapNode title="Suppression d'un type de collège" controller="TypeCollege" action="Delete" preservedRouteParameters="id" />
  19. </mvcSiteMapNode>
  20. <mvcSiteMapNode title="Territoires" controller="Territoire" action="Index">
  21. <mvcSiteMapNode title="Création d'un territoire" controller="Territoire" action="Create" />
  22. <mvcSiteMapNode title="Edition d'un territoire" controller="Territoire" action="Edit" preservedRouteParameters="id" />
  23. <mvcSiteMapNode title="Suppression d'un territoire" controller="Territoire" action="Delete" preservedRouteParameters="id" />
  24. </mvcSiteMapNode>
  25. </mvcSiteMapNode>
  26. </mvcSiteMapNode>
  27. </mvcSiteMap>