Skip to content

Commit

Permalink
set the correct language in the html tag
Browse files Browse the repository at this point in the history
  • Loading branch information
Johnny Mijnhout committed Jan 22, 2019
1 parent ed1a1b9 commit 8eecdf5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Always reference the ticket number at the end of the issue description.
### Fixed

- Do not logout logged-in users which visit the login view, but redirect them to home
- Set the correct language in the html tag

## 1.3.5 (2018-12-21)

Expand Down
4 changes: 2 additions & 2 deletions arctic/templates/arctic/base.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{% load i18n staticfiles arctic_tags %}

{% get_current_language as LANGUAGE_CODE %}
<!DOCTYPE html>
<html lang="en">
<html lang="{{ LANGUAGE_CODE }}">

<head>
{% include "arctic/partials/head.html" %}
Expand Down

0 comments on commit 8eecdf5

Please sign in to comment.