Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Situphen <Situphen@users.noreply.github.com>
  • Loading branch information
jpbelval and Situphen committed Oct 30, 2024
1 parent b5b22a3 commit 5f7e3f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion zds/pages/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
path("technologies/", about, name="pages-technologies"),
path("association/", association, name="pages-association"),
path("contact/", ContactView.as_view(), name="pages-contact"),
path("accessibilite", accessibilite, name="pages-accessibilite"),
path("accessibilite/", accessibilite, name="pages-accessibilite"),
path("cgu/", eula, name="pages-eula"),
path("alertes/", alerts, name="pages-alerts"),
path("cookies/", cookies, name="pages-cookies"),
Expand Down
2 changes: 1 addition & 1 deletion zds/pages/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def association(request):
return render(request, "pages/association.html")


def accessibilite(request):
def accessibility(request):
"""Display accessibility's page"""
return render(request, "pages/accessibilite.html")

Expand Down

0 comments on commit 5f7e3f5

Please sign in to comment.