{% extends 'base.html.twig' %} {% block body_id 'cloudtools' %} {# the homepage is a special page which displays neither a header nor a footer. this is done with the 'trick' of defining empty Twig blocks without any content #} {% block stylesheets %} {{ parent() }} {% endblock %} {% block header %} {% endblock %} {% block modal %} {% include 'modal/message.html.twig' %}

ERROR

{% endblock %} {% block body %}
{% if awbexp != FALSE %}

{{ 'Original'|trans }}:

{{ 'ID'|trans }}

[N.]

{{ 'Items'|trans }}

[Mc]

{{ 'Volume'|trans }}

[m]

{{ 'H'|trans }}

[m]

{{ 'L'|trans }}

[m]

{{ 'W'|trans }}

{{ awbexp.nrpackages }}

{{ awbexp.ncolli }}

{% if awbexp.volumeflag == 1 %} {{ awbexp.inbound|number_format(2, ',', '.') }} {# Inbound #} {{ 'IN BOUND'|trans }} {% elseif awbexp.volumeflag == 2 %} {{ awbexp.realvolume|number_format(2, ',', '.') }} {# Package #} {{ 'PACKAGE'|trans }} {% elseif awbexp.volumeflag == 3 %} {{ awbexp.realvolumesurface|number_format(2, ',', '.') }} {# V-Shape #} {{ 'V-SHAPE'|trans }} {% elseif awbexp.volumeflag == 4 %} {{ awbexp.inboundvolumesurface|number_format(2, ',', '.') }} {# Surface #} {{ 'SURFACE'|trans }} {% else %} {{ awbexp.inbound|number_format(2, ',', '.') }} {# Inbound #} {{ 'IN BOUND'|trans }} {% endif %}

{{ awbexp.hpackage|number_format(2, ',', '.') }}

{{ awbexp.lpackage|number_format(2, ',', '.') }}

{{ awbexp.wpackage|number_format(2, ',', '.') }}

{% endif %}






{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %} {% block footer %} {% endblock %}