Skip to content

Commit

Permalink
Fix config usage
Browse files Browse the repository at this point in the history
  • Loading branch information
shirlei committed May 5, 2014
1 parent b8c17b5 commit 17770ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion helios/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<html xmlns="http://www.w3.org/1999/xhtml"
dir="{% if LANGUAGE_BIDI %}rtl{% else %}ltr{% endif %}"
xml:lang="{% firstof LANGUAGE_CODE 'en' %}"
lang="{% firstof LANGUAGE_CODE 'en' %}">
lang="{% firstof settings.LANGUAGE_CODE 'en' %}">
<head>
<title>{% block title %}{% endblock %} - Helios</title>
{% block css %}
Expand Down
2 changes: 1 addition & 1 deletion server_ui/templates/base.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!DOCTYPE html>
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en" > <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="{% firstof settings.LANGUAGE_CODE 'en' %}"> <!--<![endif]-->
{% load i18n %}
<head>
<meta charset="utf-8">
Expand Down

0 comments on commit 17770ca

Please sign in to comment.