Slides are available here Event sponsored by Rangle and Microsoft Canada
In Django documentation Have a code to switch language. This code uses Select. Here is the copy of that code that uses a list instead of select. This might save you few more minutes in your web application development. <ul class="top-links list-inline pull-right"> <li class="hidden-xs"><a href="{% url 'signup' %}">{% trans "FACILITY SIGNUP" %}</a></li> <li class="hidden-xs"><a href="{% url 'locator' %}">{% trans "FACILITY LOCATOR" %}</a></li> <li class="hidden-xs"><a href="/if/home">{% trans "FACILITY SIGN IN" %}</a></li> </ul> <form action="{% url 'set_language' %}" method="post" id="set_lang_form">{% csrf_token %} <input name="next" type="hidden" value="{{ redirect_to }}"/> <input type="hidden" name="language"> <!-- left --> <ul class="top-links list-inline"> <li> {% get_current_language as LANGUAGE_CODE %} {% get_available_languages as LANGUAGES %} {% get_language_info for LANGUAGE_CODE as lang %} {% get_language_info_list for LANGUAGES as languages %} {% static "" as baseUrl %} <a class="dropdown-toggle no-text-underline" data-toggle="dropdown" href="#"> <img class="flag-lang" src="{{ baseUrl }}/frontend/assets/images/flags/{% if LANGUAGE_CODE == 'en' %}ca{% else %}{{ lang.code }}{% endif %}.png" width="16" height="11" ...