{% extends "bootstrap/base.html" %} {% block content %}
{% include('bootstrap/templates/successerror.html') %}
{% import "bootstrap/templates/inputerror.html" as inputerror %}
TimeZone and Language
Your current timezone is :- {{ gboptions.timezone }}
{{ inputerror.checkInput("timezoneerror") }}
Your current language is :- {{ (languages[gboptions.language]) ? languages[gboptions.language].nativeName }} and its Code is {{ gboptions.language }}
{{ inputerror.checkInput("languageerror") }}
Note :- If there is no language definition file found in the language folder for the selected language then only date and time will be displayed in selected language. Also only the variables defined in the language file will be overridden and displayed in selected language. Variables which are not defined will be displayed in default English language.
Please go through help file section Adding Custom Language for creating language definition file.
Guestbook Theme
Your current theme is :- {{ gboptions.theme }}
{{ inputerror.checkInput("themeerror") }}
{% set themeval = post.theme ? post.theme : gboptions.theme %}
{% endblock %}