Version 1.0
Returns the value of the id field of the language.
{{ response.language.id }}
129
Version 1.0
Returns the value of the code field of the language.
<ul>
{% for item in response.shop.available_countries %}
<li>
<a href="#" lang='{{item.language.code}}' cid="{{item.id}}" >{{item.language.name}} </a>
</li>
{% endfor %}
<ul>
{{ response.language.code }}
pt
Version 1.0
Returns the value of the name field of the language.
<ul>
{% for item in response.shop.available_countries %}
<li>
<a href="#" lang='{{item.language.code}}' cid="{{item.id}}" >{{item.language.name}} </a>
</li>
{% endfor %}
<ul>
{{ response.language.name }}
Portuguese