##// END OF EJS Templates
some improvement
some improvement

File last commit:

r9049:ec3b152d
r9218:3d234d0c
Show More
display_priority.tpl
45 lines | 1.2 KiB | application/vnd.groove-tool-template | SmartyLexer
{%- extends 'null.tpl' -%}
{#display data priority#}
{%- block data_priority scoped -%}
{%- for type in output | filter_data_type -%}
{%- if type in ['pdf']%}
{%- block data_pdf -%}
->> pdf
{%- endblock -%}
{%- endif -%}
{%- if type in ['svg']%}
{%- block data_svg -%}
->> svg
{%- endblock -%}
{%- endif -%}
{%- if type in ['png']%}
{%- block data_png -%}
->> png
{%- endblock -%}
{%- endif -%}
{%- if type in ['html']%}
{%- block data_html -%}
->> html
{%- endblock -%}
{%- endif -%}
{%- if type in ['jpeg']%}
{%- block data_jpg -%}
->> jpg
{%- endblock -%}
{%- endif -%}
{%- if type in ['text']%}
{%- block data_text -%}
->> text
{%- endblock -%}
{%- endif -%}
{%- if type in ['latex']%}
{%- block data_latex -%}
->> latext
{%- endblock -%}
{%- endif -%}
{%- endfor -%}
{%- endblock data_priority -%}