Fix lang attribute in django 1.7
This commit is contained in:
parent
5052bd8ddc
commit
80a1eef900
@ -17,6 +17,8 @@ Fixed
|
|||||||
-----
|
-----
|
||||||
* Fix BootsrapForm: placeholder on Input and Textarea only, use class form-control on
|
* Fix BootsrapForm: placeholder on Input and Textarea only, use class form-control on
|
||||||
Input, Select and Textarea.
|
Input, Select and Textarea.
|
||||||
|
* Fix lang attribute in django 1.7. On html pages, the lang attribute of the <html> was not
|
||||||
|
present in django 1.7. We use now a methode to display it that is also available in django 1.7
|
||||||
|
|
||||||
|
|
||||||
v0.7.1 - 2016-08-24
|
v0.7.1 - 2016-08-24
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{% load i18n %}{% load staticfiles %}<!DOCTYPE html>
|
{% load i18n %}{% load staticfiles %}{% get_current_language as LANGUAGE_CODE %}<!DOCTYPE html>
|
||||||
<html{% if request.LANGUAGE_CODE %} lang="{{ request.LANGUAGE_CODE }}"{% endif %}>
|
<html{% if LANGUAGE_CODE %} lang="{{LANGUAGE_CODE}}"{% endif %}>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=edge" /><![endif]-->
|
<!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=edge" /><![endif]-->
|
||||||
|
Loading…
Reference in New Issue
Block a user