{% load i18n %} {{title}}

{{title}}

{% trans "Test vars." %}

{% trans "Test if" %}

{%if random %} OK {% trans "random is present" %} {% else%} ERROR {% trans "random is not present" %} {%endif%}

{% if subd %} OK {% else %} ERROR {% endif %} access elements on if.

{% if subd.0 %} OK {% else %} ERROR {% endif %} access subelements on if.

{% if empty %} ERROR {% else %} OK {% endif %} Empty element do not enter true if

{% trans "Test for" %}

{% trans "Test include" %}

{% include "external.html" %}

{% trans "Test some C code" %}

int argc(int argv, char **argv){
	printf("Hello world!\n");
}