diff options
| author | Majid Vaghari <majid-vaghari@users.noreply.github.com> | 2019-04-05 15:49:21 +0430 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-04-05 14:20:01 +0200 |
| commit | 9012033138fa41b573d3e4e3f0dfa8b94a4719c6 (patch) | |
| tree | 671d0d45b366fc6190af9e716a812ae91bbfc639 /django | |
| parent | 5efaf078f7609a8c95045bcfdab0ba256b5449bf (diff) | |
Fixed bidirectionality on the congrats page.
Diffstat (limited to 'django')
| -rw-r--r-- | django/views/templates/default_urlconf.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/django/views/templates/default_urlconf.html b/django/views/templates/default_urlconf.html index 2a2a0377c0..0c25686acd 100644 --- a/django/views/templates/default_urlconf.html +++ b/django/views/templates/default_urlconf.html @@ -1,6 +1,7 @@ {% load i18n %} <!doctype html> -<html> +{% get_current_language_bidi as LANGUAGE_BIDI %} +<html{% if LANGUAGE_BIDI %} dir="rtl"{% endif %}> <head> <meta charset="utf-8"> <title>{% trans "Django: the Web framework for perfectionists with deadlines." %}</title> |
