CASE: create reconciliation templates just to add attachments in the working papers

Let’s say you have 5 different exports configured, and they all need the annual accounts (one PDF-file), and all the attachments done for BizzTax (several attachments).
If an user would want to generate this exports, they will need to add the needed attachments 5 times (each for every export).

:bulb:

To avoid this, you could also create specifically reconciliation templates for this, that only let you add attachments in the recon template in the working papers:

21

To create this, you add a blanc recon template on office level, and use this kind of code f.i. :

The virtual account number is very important, because it generates where in the export it will be shown (assets, liabilities, costs, revenu or reconciliations - for that last one, you’ll need to start your virtual account number start with ‘8’ ! ).
Also, whether or not a green dot should be generated, or just a yellow square, is up to you to decide.

You now even have created a recon template, that can have checks as well (a checklist in the working papers can be linked to recon templates)!

In the export on office level, you could easily set up this configuration for each export :

This way, a user has to add the attachments only once (in the working papers). Better yet, it can impact the baro-meter of the working papers as well!

To be clear; the following code you can use :

{% input custom.taxes.annex as:file_collection %} 

The ‘taxes’ and ‘annex’ part can be chosen whatever you like; the rest of the code needs to be respected.

1 Like

Dear Sven,

Glad you already opened a topic about it.

But I ran into an issue:

Say you want the following structure:

Voorblad
Jaarrekening
Balans
Toelichting rekeningen
Bijlagen VenB

Instead of linking the PDF ‘jaarrekening’ manually, i want to add it to a reconciliation. But then, when I create an export, I get the ‘Fiscale toelichting’ and ‘Jaarrekening’

Any way we can hide this?

Maybe some tweaks in Detail Text?

{% for account_or_text in export.selected_accounts_and_reconciliation_texts.8 %}

Change it to 9? With different settings?

Sure thing @Thijs

Normally we do this for you (if you want, you can ask our first line helpdesk through the chat for this), but it’s the code of the “detail text” that is generating this in an export (you can see that by clicking on “advanced settings” and then changing edit into advanced of the URL, and then ENTER it) :

You’ll see this then :

It’s this code that generates all details regarding the working papers in an export :

{% t= "Activa" fr:"Explication actif" %}
{% t= "Passiva" fr:"Explication passif" %}
{% t= "Kosten" fr:"Frais" %}
{% t= "Opbrengsten" fr:"Produits" %}
{% t= "Fsicale toelichting" fr:"Explication fiscale" %}


{% capture sf_default_detail_template %}
{% raw %}
{% unless current_account.details.count == 0 and current_account.value == 0 %}
{% for detail in current_account.details %}{% if forloop.first %}|-----|----14%-----:|-----14%------:+{% endif %}
| {{detail.title}}{% if detail.description != blank %}<br/>{{detail.description | multiline_table}}{% endif %}{% if detail.custom.document %}<br>{% input detail.custom.doc as:file %}{% endif %} |{% if current_account.liability_or_income %}{{-1*detail.value | currency}}{% else %}{{detail.value | currency}}{% endif %}| &nbsp; {% endfor %}
{% endunless %}
{% endraw %}
{% endcapture %}


{% for account_or_text in export.selected_accounts_and_reconciliation_texts.assets.include_zeros_with_details %}

{% if account_or_text.is_account %}

{% if forloop.first %}
{% if new_page %}{% newpage account_or_text.preferred_orientation %}{% endif %}{% assign new_page = true %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
# <font size="16">{% t "Activa" %}</font>
{% else %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
{% endif %}

|------------|------15%------:+{{export.highlight_alt_bg_color}}
| <font color="{{export.highlight_alt_text_color}}"><font color="{{export.highlight_alt_text_color}}">{{ account_or_text.number }} {{ account_or_text.name }}</font></font> | <font color="{{export.highlight_alt_text_color}}">{{ account_or_text.value | currency }}</font>

{{ account_or_text.rendered_template }}

<br>

{:/group}
  
{% else %}

{% if forloop.first %}
{% if new_page %}{% newpage account_or_text.preferred_orientation %}{% endif %}{% assign new_page = true %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
# <font size="16">{% t "Activa" %}</font>
{% else %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
{% endif %}

|--------+{{export.highlight_alt_bg_color}}
|<font color="{{export.highlight_alt_text_color}}">{{ account_or_text.name }}</font>

{{ account_or_text.rendered_template }}

<br>

{:/group}

{% endif %}

{% endfor %}












{% for account_or_text in export.selected_accounts_and_reconciliation_texts.liabilities.include_zeros_with_details %}

{% if account_or_text.is_account %}

{% if forloop.first %}
{% if new_page %}{% newpage account_or_text.preferred_orientation %}{% endif %}{% assign new_page = true %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
# <font size="16">{% t "Passiva" %}</font>
{% else %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
{% endif %}

|------------|------15%------:+{{export.highlight_alt_bg_color}}
| <font color="{{export.highlight_alt_text_color}}"><font color="{{export.highlight_alt_text_color}}">{{ account_or_text.number }} {{ account_or_text.name }}</font></font> | <font color="{{export.highlight_alt_text_color}}">{{ -1*account_or_text.value | currency }}</font>

{{ account_or_text.rendered_template }}

<br>

{:/group}
  
{% else %}

{% if forloop.first %}
{% if new_page %}{% newpage account_or_text.preferred_orientation %}{% endif %}{% assign new_page = true %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
# <font size="16">{% t "Passiva" %}</font>
{% else %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
{% endif %}

|--------+{{export.highlight_alt_bg_color}}
|<font color="{{export.highlight_alt_text_color}}">{{ account_or_text.name }}</font>

{{ account_or_text.rendered_template }}

<br>

{:/group}

{% endif %}

{% endfor %}











{% for account_or_text in export.selected_accounts_and_reconciliation_texts.revenues.include_zeros_with_details.6 %}

{% if account_or_text.is_account %}

{% if forloop.first %}
{% if new_page %}{% newpage account_or_text.preferred_orientation %}{% endif %}{% assign new_page = true %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
# <font size="16">{% t "Kosten" %}</font>
{% else %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
{% endif %}

|------------|------15%------:+{{export.highlight_alt_bg_color}}
| <font color="{{export.highlight_alt_text_color}}"><font color="{{export.highlight_alt_text_color}}">{{ account_or_text.number }} {{ account_or_text.name }}</font></font> | <font color="{{export.highlight_alt_text_color}}">{{ account_or_text.value | currency }}</font>

{{ account_or_text.rendered_template }}

<br>

{:/group}
  
{% else %}

{% if forloop.first %}
{% if new_page %}{% newpage account_or_text.preferred_orientation %}{% endif %}{% assign new_page = true %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
# <font size="16">{% t "Kosten" %}</font>
{% else %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
{% endif %}

|--------+{{export.highlight_alt_bg_color}}
|<font color="{{export.highlight_alt_text_color}}">{{ account_or_text.name }}</font>

{{ account_or_text.rendered_template }}

<br>

{:/group}

{% endif %}

{% endfor %}





{% for account_or_text in export.selected_accounts_and_reconciliation_texts.revenues.include_zeros_with_details.7 %}

{% if account_or_text.is_account %}

{% if forloop.first %}
{% if new_page %}{% newpage account_or_text.preferred_orientation' %}{% endif %}{% assign new_page = true %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
# <font size="16">{% t "Opbrengsten" %}</font>
{% else %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
{% endif %}


|------------|------15%------:+{{export.highlight_alt_bg_color}}
| <font color="{{export.highlight_alt_text_color}}"><font color="{{export.highlight_alt_text_color}}">{{ account_or_text.number }} {{ account_or_text.name }}</font></font> | <font color="{{export.highlight_alt_text_color}}">{{ -1*account_or_text.value | currency }}</font>

{{ account_or_text.rendered_template }}

<br>

{:/group}
  
{% else %}

{% if forloop.first %}
{% if new_page %}{% newpage account_or_text.preferred_orientation %}{% endif %}{% assign new_page = true %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
# <font size="16">{% t "Opbrengsten" %}</font>
{% else %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
{% endif %}

|--------+{{export.highlight_alt_bg_color}}
|<font color="{{export.highlight_alt_text_color}}">{{ account_or_text.name }}</font>

{{ account_or_text.rendered_template }}

<br>

{:/group}

{% endif %}

{% endfor %}












{% for account_or_text in export.selected_accounts_and_reconciliation_texts.8 %}

{% if account_or_text.is_account %}

{% if forloop.first %}
{% if new_page %}{% newpage account_or_text.preferred_orientation %}{% endif %}{% assign new_page = true %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
# <font size="16">{% t "Fiscale toelichting" %}</font>
{% else %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
{% endif %}


|------------|------15%------:+{{export.highlight_alt_bg_color}}
| <font color="{{export.highlight_alt_text_color}}"><font color="{{export.highlight_alt_text_color}}">{{ account_or_text.number }} {{ account_or_text.name }}</font></font> | <font color="{{export.highlight_alt_text_color}}">{{ account_or_text.value | currency }}</font>

{{ account_or_text.rendered_template }}

<br>

{:/group}
  
{% else %}

{% if forloop.first %}
{% if new_page %}{% newpage account_or_text.preferred_orientation %}{% endif %}{% assign new_page = true %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
# <font size="16">{% t "Fiscale toelichting" %}</font>
{% else %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
{% endif %}

|--------+{{export.highlight_alt_bg_color}}
|<font color="{{export.highlight_alt_text_color}}">{{ account_or_text.name }}</font>

{{ account_or_text.rendered_template }}

<br>

{:/group}

{% endif %}

{% endfor %} 

As you can see in the code, everything of recon templates that start with an 8 as virtual account number, will be sorted under the main title “Fiscale toelichting”.
You can change this into something else, or better yet, for those recon templates that only have the purpose of adding attachments, we can add new code in the detail text, looking at a specific range of virtual account number, for instance 88 :


{% for account_or_text in export.selected_accounts_and_reconciliation_texts.88 %}

{% if account_or_text.is_account %}

{% if forloop.first %}
{% if new_page %}{% newpage account_or_text.preferred_orientation %}{% endif %}{% assign new_page = true %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
# <font size="16">{% t "Annexes" %}</font>
{% else %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
{% endif %}


|------------|------15%------:+{{export.highlight_alt_bg_color}}
| <font color="{{export.highlight_alt_text_color}}"><font color="{{export.highlight_alt_text_color}}">{{ account_or_text.number }} {{ account_or_text.name }}</font></font> | <font color="{{export.highlight_alt_text_color}}">{{ account_or_text.value | currency }}</font>

{{ account_or_text.rendered_template }}

<br>

{:/group}
  
{% else %}

{% if forloop.first %}
{% if new_page %}{% newpage account_or_text.preferred_orientation %}{% endif %}{% assign new_page = true %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
# <font size="16">{% t "Annexes" %}</font>
{% else %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
{% endif %}

|--------+{{export.highlight_alt_bg_color}}
|<font color="{{export.highlight_alt_text_color}}">{{ account_or_text.name }}</font>

{{ account_or_text.rendered_template }}

<br>

{:/group}

{% endif %}

{% endfor %}

So each recon template for those attachments, need to start with ‘88’ in order to be seen under “Annexes”.

Also, all other recon templates (not related to attachments), should be adjusted as well, like all have to start with 80.
That way, we’ll need to change the detail text and change it into this for instance :


{% t= "Activa" fr:"Explication actif" %}
{% t= "Passiva" fr:"Explication passif" %}
{% t= "Kosten" fr:"Frais" %}
{% t= "Opbrengsten" fr:"Produits" %}
{% t= "Fsicale toelichting" fr:"Explication fiscale" %}
{% t= "Bijlages" fr:"Annexes" en:"Annexes" %}


{% capture sf_default_detail_template %}
{% raw %}
{% unless current_account.details.count == 0 and current_account.value == 0 %}
{% for detail in current_account.details %}{% if forloop.first %}|-----|----14%-----:|-----14%------:+{% endif %}
| {{detail.title}}{% if detail.description != blank %}<br/>{{detail.description | multiline_table}}{% endif %}{% if detail.custom.document %}<br>{% input detail.custom.doc as:file %}{% endif %} |{% if current_account.liability_or_income %}{{-1*detail.value | currency}}{% else %}{{detail.value | currency}}{% endif %}| &nbsp; {% endfor %}
{% endunless %}
{% endraw %}
{% endcapture %}


{% for account_or_text in export.selected_accounts_and_reconciliation_texts.assets.include_zeros_with_details %}

{% if account_or_text.is_account %}

{% if forloop.first %}
{% if new_page %}{% newpage account_or_text.preferred_orientation %}{% endif %}{% assign new_page = true %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
# <font size="16">{% t "Activa" %}</font>
{% else %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
{% endif %}

|------------|------15%------:+{{export.highlight_alt_bg_color}}
| <font color="{{export.highlight_alt_text_color}}"><font color="{{export.highlight_alt_text_color}}">{{ account_or_text.number }} {{ account_or_text.name }}</font></font> | <font color="{{export.highlight_alt_text_color}}">{{ account_or_text.value | currency }}</font>

{{ account_or_text.rendered_template }}

<br>

{:/group}
  
{% else %}

{% if forloop.first %}
{% if new_page %}{% newpage account_or_text.preferred_orientation %}{% endif %}{% assign new_page = true %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
# <font size="16">{% t "Activa" %}</font>
{% else %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
{% endif %}

|--------+{{export.highlight_alt_bg_color}}
|<font color="{{export.highlight_alt_text_color}}">{{ account_or_text.name }}</font>

{{ account_or_text.rendered_template }}

<br>

{:/group}

{% endif %}

{% endfor %}












{% for account_or_text in export.selected_accounts_and_reconciliation_texts.liabilities.include_zeros_with_details %}

{% if account_or_text.is_account %}

{% if forloop.first %}
{% if new_page %}{% newpage account_or_text.preferred_orientation %}{% endif %}{% assign new_page = true %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
# <font size="16">{% t "Passiva" %}</font>
{% else %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
{% endif %}

|------------|------15%------:+{{export.highlight_alt_bg_color}}
| <font color="{{export.highlight_alt_text_color}}"><font color="{{export.highlight_alt_text_color}}">{{ account_or_text.number }} {{ account_or_text.name }}</font></font> | <font color="{{export.highlight_alt_text_color}}">{{ -1*account_or_text.value | currency }}</font>

{{ account_or_text.rendered_template }}

<br>

{:/group}
  
{% else %}

{% if forloop.first %}
{% if new_page %}{% newpage account_or_text.preferred_orientation %}{% endif %}{% assign new_page = true %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
# <font size="16">{% t "Passiva" %}</font>
{% else %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
{% endif %}

|--------+{{export.highlight_alt_bg_color}}
|<font color="{{export.highlight_alt_text_color}}">{{ account_or_text.name }}</font>

{{ account_or_text.rendered_template }}

<br>

{:/group}

{% endif %}

{% endfor %}











{% for account_or_text in export.selected_accounts_and_reconciliation_texts.revenues.include_zeros_with_details.6 %}

{% if account_or_text.is_account %}

{% if forloop.first %}
{% if new_page %}{% newpage account_or_text.preferred_orientation %}{% endif %}{% assign new_page = true %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
# <font size="16">{% t "Kosten" %}</font>
{% else %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
{% endif %}

|------------|------15%------:+{{export.highlight_alt_bg_color}}
| <font color="{{export.highlight_alt_text_color}}"><font color="{{export.highlight_alt_text_color}}">{{ account_or_text.number }} {{ account_or_text.name }}</font></font> | <font color="{{export.highlight_alt_text_color}}">{{ account_or_text.value | currency }}</font>

{{ account_or_text.rendered_template }}

<br>

{:/group}
  
{% else %}

{% if forloop.first %}
{% if new_page %}{% newpage account_or_text.preferred_orientation %}{% endif %}{% assign new_page = true %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
# <font size="16">{% t "Kosten" %}</font>
{% else %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
{% endif %}

|--------+{{export.highlight_alt_bg_color}}
|<font color="{{export.highlight_alt_text_color}}">{{ account_or_text.name }}</font>

{{ account_or_text.rendered_template }}

<br>

{:/group}

{% endif %}

{% endfor %}





{% for account_or_text in export.selected_accounts_and_reconciliation_texts.revenues.include_zeros_with_details.7 %}

{% if account_or_text.is_account %}

{% if forloop.first %}
{% if new_page %}{% newpage account_or_text.preferred_orientation' %}{% endif %}{% assign new_page = true %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
# <font size="16">{% t "Opbrengsten" %}</font>
{% else %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
{% endif %}


|------------|------15%------:+{{export.highlight_alt_bg_color}}
| <font color="{{export.highlight_alt_text_color}}"><font color="{{export.highlight_alt_text_color}}">{{ account_or_text.number }} {{ account_or_text.name }}</font></font> | <font color="{{export.highlight_alt_text_color}}">{{ -1*account_or_text.value | currency }}</font>

{{ account_or_text.rendered_template }}

<br>

{:/group}
  
{% else %}

{% if forloop.first %}
{% if new_page %}{% newpage account_or_text.preferred_orientation %}{% endif %}{% assign new_page = true %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
# <font size="16">{% t "Opbrengsten" %}</font>
{% else %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
{% endif %}

|--------+{{export.highlight_alt_bg_color}}
|<font color="{{export.highlight_alt_text_color}}">{{ account_or_text.name }}</font>

{{ account_or_text.rendered_template }}

<br>

{:/group}

{% endif %}

{% endfor %}












{% for account_or_text in export.selected_accounts_and_reconciliation_texts.80 %}

{% if account_or_text.is_account %}

{% if forloop.first %}
{% if new_page %}{% newpage account_or_text.preferred_orientation %}{% endif %}{% assign new_page = true %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
# <font size="16">{% t "Fiscale toelichting" %}</font>
{% else %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
{% endif %}


|------------|------15%------:+{{export.highlight_alt_bg_color}}
| <font color="{{export.highlight_alt_text_color}}"><font color="{{export.highlight_alt_text_color}}">{{ account_or_text.number }} {{ account_or_text.name }}</font></font> | <font color="{{export.highlight_alt_text_color}}">{{ account_or_text.value | currency }}</font>

{{ account_or_text.rendered_template }}

<br>

{:/group}
  
{% else %}

{% if forloop.first %}
{% if new_page %}{% newpage account_or_text.preferred_orientation %}{% endif %}{% assign new_page = true %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
# <font size="16">{% t "Fiscale toelichting" %}</font>
{% else %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
{% endif %}

|--------+{{export.highlight_alt_bg_color}}
|<font color="{{export.highlight_alt_text_color}}">{{ account_or_text.name }}</font>

{{ account_or_text.rendered_template }}

<br>

{:/group}

{% endif %}

{% endfor %}

{% for account_or_text in export.selected_accounts_and_reconciliation_texts.88 %}

{% if account_or_text.is_account %}

{% if forloop.first %}
{% if new_page %}{% newpage account_or_text.preferred_orientation %}{% endif %}{% assign new_page = true %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
# <font size="16">{% t "Annexes" %}</font>
{% else %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
{% endif %}


|------------|------15%------:+{{export.highlight_alt_bg_color}}
| <font color="{{export.highlight_alt_text_color}}"><font color="{{export.highlight_alt_text_color}}">{{ account_or_text.number }} {{ account_or_text.name }}</font></font> | <font color="{{export.highlight_alt_text_color}}">{{ account_or_text.value | currency }}</font>

{{ account_or_text.rendered_template }}

<br>

{:/group}
  
{% else %}

{% if forloop.first %}
{% if new_page %}{% newpage account_or_text.preferred_orientation %}{% endif %}{% assign new_page = true %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
# <font size="16">{% t "Annexes" %}</font>
{% else %}
{% changeorientation account_or_text.preferred_orientation %}
{::group}
{% endif %}

|--------+{{export.highlight_alt_bg_color}}
|<font color="{{export.highlight_alt_text_color}}">{{ account_or_text.name }}</font>

{{ account_or_text.rendered_template }}

<br>

{:/group}

{% endif %}

{% endfor %}  

Care to give it a try?

Indeed, didn’t read your last post but it’s the detail text that has to be tweaked

Let us know if it works, or you need help :muscle:

OK, i’m getting there.

Now i have in the export:

Now i want 'Jaarrekening in the lay-out of a title page:

But that is not the issue, i want to get rid of the ‘Bijlage 1’. Probably this is created in the back-end?
Possibility to extract the {{ account_or_text.rendered_template }} ?

I’ll just put it in white, worked great!

@Thijs,

Great case! :ok_hand:

you should be able to get a title page in there, by just adding a titel page into the export (drag and drop) instead of changing code in detail text.

Let me know if you’re stuck on anything else, and we’ll help you right away

@sven,

Great explanation, but I’ve got one problem. By changing styles, if I click on “advanced settings” I get something totally different then what you show above here… Am I doing something wrong here? :slight_smile:

Hey @Cedric,

Don’t you see detail text, when you scroll down the page?

Nope… :sweat:


That’s wierd @Cedric; looks like something needs to be updated in your environment! You can ask our first line helpdesk this through chat, if you don’t mind ?

Will do. Thanks for the info.

My pleasure @Cedric

I’ve edited my case above as well for this, since the advanced settings are indeed not visible standard (my bad, got confused there I’m afraid :see_no_evil: )

But as you already know by now, you can change the URL when you are in “advanced setting” and change the edit into advanced

Hi Sven,

I wanted to get a title page, en then directly the PDF. If I add a title page in export, I get:

  • Title page
  • Page with name of reconciliation
  • PDF

So, I edited the detail text, Page with name of reconciliation -> Title page:

<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>

|------|------:+
||<font size="18">{% t "Bijlagen" %}</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;

<font color="ffffff">{{ account_or_text.name }}{{ account_or_text.rendered_template }}</font>

Did this work for you @Thijs, or did you have a question ?

It worked great! :slight_smile:

1 Like

Thanks for sharing! @Thijs :facepunch:

@sven

Is there something changed with the styles?

<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>

|------|------:+
||<font size="18">{% t "Bijlagen" %}</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;

<font color="ffffff">{{ account_or_text.rendered_template }}</font>

<br>

This worked until now, now i’m getting the number of the attachment displayed:

Hello @Thijs,

Nothing changed as far as I know. What did it show previously then?

Isn’t it because there are multiple attachments now?