django internationalization

47 views
Skip to first unread message

Dhrub Kumar Sharma

unread,
Nov 28, 2022, 2:53:49 PM11/28/22
to Django users
Hi everybody I am applying Django internalization for a multilingual site. I am facing a problem with making href URL dynamic instead of repeating same code manually.

url.png
I tried this but cant get perfect href dynamically. please help me same problem I am facing in language switcher href also.

    {% get_current_language as LANGUAGE_CODE %}
    {% get_available_languages as LANGUAGES %}
    {% get_language_info_list for LANGUAGES as languages %}
    {% get_language_info for LANGUAGE_CODE as lang %}
    {% for lang in languages %}
        <link rel="alternate" hreflang="{{ lang.code }}" href="/{{ lang.code }}/">
    {% endfor %}

loop.png



David Emanuel Sandoval

unread,
Nov 28, 2022, 5:23:57 PM11/28/22
to django...@googlegroups.com
Hi, in my case I'm not sure if I'm understanding the problem well. 

Do you have a different url for every language? Are the urls also translated?

In the docs i see they use a tag to get the correct url for the given language, but as I said, I'm not sure if that is what you want.


--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/6c5c96ea-9866-40b2-9c23-9b03d771ae7en%40googlegroups.com.

Dhrub Kumar Sharma

unread,
Nov 29, 2022, 1:23:51 AM11/29/22
to django...@googlegroups.com
I want the remaining slug part print dynamically rather than listing manually like https://example.com/ru/hello-world

Here,

ru - country code

Hello-word is slug 

Domain and country code is easy to print using for loop up to available country code but for slug i dint get exact code to print when I use {{% request.path %} } it also wont work because when the user visit the page


Then request.path become 
ru/hello-word 

And at this time {{% request.path %} } fetch ru/hello-world so ru will be repeated twice in this case and our url become insane like


But acutally i want to print only the page path not the full url directory

In the django documentation there is only code avaiable form type select to switch language but i want there dropdown with anchor tag there also i am facing the same problm and second picture is of dropdown

RANGA BHARATH JINKA

unread,
Nov 29, 2022, 6:39:34 AM11/29/22
to django...@googlegroups.com
Reply all
Reply to author
Forward
0 new messages