{% extends "base.html" %} {% block title %}{{ lang_data[solution].pagetitle }}{% endblock %} {% block content %} {% if lang_data[solution].banners %} {% endif %}

{{ lang_data[solution].title }}

{% for content in lang_data[solution].contents %} {% if content.bigtitle %}

{{ content.bigtitle }}

{% else %} {% if content.title %}

{{ content.title }}

{% endif %} {% if content.desc %}

{{ content.desc }}

{% endif %} {% if content.desc_with_list %} {% if content.desc_with_list.text %}

{{ content.desc_with_list.text }}:

{% endif %}
    {% for item in content.desc_with_list.info %}
  • {% if item.name %} {{ item.name }}: {% endif %} {{ item.text }} {% if item.images %}
    {% endif %}
  • {% endfor %}
{% endif %} {% if content.images %}
{% endif %} {% if content.footer %}

{{ content.footer }}

{% endif %} {% if content.footer2 %}

{{ content.footer2 }}

{% endif %} {% endif %} {% endfor %}
{% endblock %}