diff --git a/myhpi/static/scss/footer.scss b/myhpi/static/scss/footer.scss index f0a6c6b9..d21ca4c1 100644 --- a/myhpi/static/scss/footer.scss +++ b/myhpi/static/scss/footer.scss @@ -25,6 +25,12 @@ text-decoration: underline; } } + + .btn-link { + color: var(--bs-text-light); + text-decoration: none; + padding: 0; + } } @media screen and (min-width: 576px) { diff --git a/myhpi/templates/footer.html b/myhpi/templates/footer.html index 0f10570c..3409c3ae 100644 --- a/myhpi/templates/footer.html +++ b/myhpi/templates/footer.html @@ -12,9 +12,14 @@ {% endfor %} \ No newline at end of file diff --git a/myhpi/urls.py b/myhpi/urls.py index 74332224..cf20d8e8 100644 --- a/myhpi/urls.py +++ b/myhpi/urls.py @@ -31,6 +31,7 @@ ".well-known/security.txt", RedirectView.as_view(url=os.path.join(settings.STATIC_URL, "security.txt")), ), + path("i18n/", include("django.conf.urls.i18n")), path("", include("myhpi.core.urls")), ]