aded full functionality to lang menu

This commit is contained in:
RubenPX 2022-02-26 19:54:27 +01:00
parent feb591ea79
commit 1816301952
4 changed files with 9 additions and 7 deletions

View File

@ -1,6 +1,7 @@
from django.contrib.auth.mixins import UserPassesTestMixin
from django.utils.translation import gettext_lazy as _
from django.views.generic.base import ContextMixin
from django.conf import settings
from . import api, get_version
from .auth import SESSION_KEY_TOKEN
@ -20,6 +21,7 @@ class CustomContextMixin(ContextMixin):
context.update({
'services_menu': services_menu,
'version': get_version(),
'languages': settings.LANGUAGES,
})
return context

View File

@ -81,9 +81,9 @@
<i class="fas fa-globe"></i> {% trans "Language" %}
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="#Select-Lang">{% trans 'English'%}</a>
<a class="dropdown-item" href="#Select-Lang">{% trans 'Català'%}</a>
<a class="dropdown-item" href="#Select-Lang">{% trans 'Español'%}</a>
{% for code, language in languages %}
<a class="dropdown-item" href="{% url 'musician:profile-set-lang' code %}">{{ language }}</a>
{% endfor %}
</div>
</div>
</button>

View File

@ -19,7 +19,7 @@ urlpatterns = [
path('billing/', views.BillingView.as_view(), name='billing'),
path('bills/<int:pk>/download/', views.BillDownloadView.as_view(), name='bill-download'),
path('profile/', views.ProfileView.as_view(), name='profile'),
path('profile/setLang/<lang>', views.ProfileSetLang, name='profile'),
path('profile/setLang/<code>', views.ProfileSetLang, name='profile-set-lang'),
path('address/', views.MailView.as_view(), name='address-list'),
path('address/new/', views.MailCreateView.as_view(), name='address-create'),
path('address/<int:pk>/', views.MailUpdateView.as_view(), name='address-update'),

View File

@ -126,12 +126,12 @@ class ProfileView(CustomContextMixin, UserTokenRequiredMixin, TemplateView):
return context
def ProfileSetLang(request, lang):
def ProfileSetLang(request, code):
# set user language as active language
if any(x[0] == lang for x in settings.LANGUAGES):
if any(x[0] == code for x in settings.LANGUAGES):
# http://127.0.0.1:8080/profile/setLang/es
user_language = lang
user_language = code
translation.activate(user_language)
response = HttpResponseRedirect('/dashboard')