feat: add legal/info pages and update footer with links

Agent-Logs-Url: https://github.com/dsaub/proyecto-final/sessions/022418da-7d63-48aa-99d9-dd4257314523

Co-authored-by: dsaub <54474838+dsaub@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-04-09 19:09:48 +00:00
committed by GitHub
parent 7ff014a951
commit 4ab93edc71
11 changed files with 527 additions and 19 deletions
+7
View File
@@ -46,6 +46,13 @@ urlpatterns = [
path("usuario/mensajes/", views.mensajes_comprador, name="mensajes_comprador"),
path("verify/<str:code>", views.verify, name="verify"),
path("rgpd", views.rgpd, name="rgpd"),
path("privacidad", views.rgpd, name="privacidad"),
path("devoluciones", views.devoluciones, name="devoluciones"),
path("aviso-legal", views.aviso_legal, name="aviso_legal"),
path("terminos", views.terminos, name="terminos"),
path("cookies", views.cookies, name="cookies"),
path("sobre-nosotros", views.sobre_nosotros, name="sobre_nosotros"),
path("ayuda", views.ayuda, name="ayuda"),
path("reset-password", views.reset_password, name="reset_password"),
path("reset-password-phase2/<str:code>", views.reset_password_phase2, name="reset_password_phase2")
]