{% extends "layout.html" %} {% block content %}
{% if category.description != "" %}

{{ category.name }}

{{ category.description|raw }}
{% endif %}
{% if category.description == "" %}

{{ category.name }}

{% endif %}

{% if category.packages|length > 0 %} {% if category.displayType == "list" %} {% for package in category.packages %} {% endfor %}
{{ package.name }} {% if package.customPrice == false and package.price > 0 %} {% if package.discount.applied %} {{ package.discount.original|money }} {% endif %} {{ package.price|money }} {{ basket.currency }} {% endif %} {% if package.basket %} {{ lang("button.remove") }} {% else %} {{ lang("button.buy") }} {% endif %}
{% else %}

{% for package in category.packages %}
{% endfor %}
{% endif %} {% else %} {{ lang("category.empty") }} {% endif %}

{% endblock %}