Mvc.sitemap 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 title="Identité" controller="Identites" action="Details" preservedRouteParameters="id" >
  13. <mvcSiteMapNode title="Edition de l'identité" controller="Identites" action="Edit" preservedRouteParameters="id" />
  14. </mvcSiteMapNode>
  15. </mvcSiteMapNode>
  16. </mvcSiteMapNode>
  17. <mvcSiteMapNode title="Administration" controller="Admin" action="Index">
  18. <mvcSiteMapNode title="Types de collège" controller="TypeCollege" action="Index">
  19. <mvcSiteMapNode title="Création d'un type de collège" controller="TypeCollege" action="Create" />
  20. <mvcSiteMapNode title="Edition d'un type de collège" controller="TypeCollege" action="Edit" preservedRouteParameters="id" />
  21. <mvcSiteMapNode title="Suppression d'un type de collège" controller="TypeCollege" action="Delete" preservedRouteParameters="id" />
  22. </mvcSiteMapNode>
  23. <mvcSiteMapNode title="Territoires" controller="Territoire" action="Index">
  24. <mvcSiteMapNode title="Création d'un territoire" controller="Territoire" action="Create" />
  25. <mvcSiteMapNode title="Edition d'un territoire" controller="Territoire" action="Edit" preservedRouteParameters="id" />
  26. <mvcSiteMapNode title="Suppression d'un territoire" controller="Territoire" action="Delete" preservedRouteParameters="id" />
  27. </mvcSiteMapNode>
  28. <mvcSiteMapNode title="Types de restauration" controller="RestaurationType" action="Index">
  29. <mvcSiteMapNode title="Création d'un type de restauration" controller="RestaurationType" action="Create" />
  30. <mvcSiteMapNode title="Edition d'un type de restauration" controller="RestaurationType" action="Edit" preservedRouteParameters="id" />
  31. <mvcSiteMapNode title="Suppression d'un type de restauration" controller="RestaurationType" action="Delete" preservedRouteParameters="id" />
  32. </mvcSiteMapNode>
  33. </mvcSiteMapNode>
  34. </mvcSiteMapNode>
  35. </mvcSiteMap>