sven
May 16, 2018, 12:20pm
#1
It is now possible to add an info-tag to a standard Silverfin-template, like this:
Just go to the template on office level, and add this in the extra configuration:
You can use this code for example:
{% ic %}
{::infotext}
{% if period.reconciliations.omzetvergelijking != blank %}
{% linkto period.reconciliations.omzetvergelijking %}{% t "Click here to go Sales Comparison" %}{% endlinkto %}
{% else %}
{% t "Template Sales Comparison missing- please add to the working papers if needed" %}
{% endif %}
{:/infotext}
{% endic %}
More info here as well:
There’s new functionality you can use in templates now :
{::infotext} test info {:/infotext}
{::warningtext} test warning {:/warningtext}
This will give a nice looking text like this :
[57]
In export however, it will not look like that (only the text and color will be exported), but this is only meant for input-mode (so be sure to use {% ic %} ... {% endic %}
If you wish to create an info text that displays through the whole width of the page, like this:
[12]
you can easily do by this c…
and here for generating a link to another template:
In a template you make, it could become handy to have a link to another template. This way, an user doesn’t have to click on the working period and search for the desired reconciliation template.
To create in what we call a “linkto-tag”, you need for the template where you want to linkto, a handle :
[handle]
In custom templates, you can easily add this. For a Silverfin template, a handle should already be existing.
A handle is basically sort of a ‘shortcut’ you can use for a linkto.
To crea…