PDF rausgenommen

This commit is contained in:
aschwarz
2023-01-23 11:03:31 +01:00
parent 82d562a322
commit a6523903eb
28078 changed files with 4247552 additions and 2 deletions

View File

@ -0,0 +1,24 @@
{% macro logoHtml(metadata, alt='') %}
{% if metadata['logo'] is defined %}
{% if metadata['logoWidth'] is defined %}
{% set width %}width="{{ metadata['logoWidth'] }}"{% endset %}
{% endif %}
{% if metadata['logoHeight'] is defined %}
{% set height %}height="{{ metadata['logoHeight'] }}"{% endset %}
{% endif %}
{% if metadata['logoWidth'] is defined %}
{% set width %}width="{{ metadata['logoWidth'] }}"{% endset %}
{% endif %}
{% if alt is not empty %}
{% set alt %}title='{{ alt }}' alt='{{ alt }}'{% endset %}
{% endif %}
<img {{ alt }} {{ width|default('') }} {{ height|default('') }} src='{{ metadata['logo'] }}' />
{% endif %}
{% endmacro %}
{# Deprecated: use form-group and form-help DIVs instead #}
{% macro inlineHelp(text) %}
<div class="ui-inline-help" >
{{ text|raw }}
</div>
{% endmacro %}