adding rendering of choice_long and number on CSV

This commit is contained in:
Julien Fastré 2016-07-08 13:56:17 +02:00
parent b97a550e2b
commit 2e59c0666b
2 changed files with 2 additions and 0 deletions

View File

@ -0,0 +1 @@
{% if values|length == 1 %}{{ values[0].text|localize_translatable_string|default("")|csv_cell }}{% elseif values|length ==0 %}{{ 'emtpy'|csv_cell }}{% else %}{{ 'pas de rendu multiple'|csv_cell }}{% endif %}

View File

@ -0,0 +1 @@
{% if number is not empty %}{{ number|number_format(scale)|csv_cell }}{% endif %}