Default text display within input cell

Hi,

I’ve been using {% input custom.some.thing %} to create input cells within my templates; however I’ve noticed that the ‘thing’ part of this code will denote the default display text for the cell, i.e:

The following code:

{% stripnewlines %}
{% newline %}{% newline %}
|__ 
{% newline %}
|-100%-+ 
{% newline %}
|**Agreed delivery schedule**

{% newline %}{% newline %}
|-20%-|:-20%-:|:-20%-:|-5%-|-35%-+
{% newline %}
|{% comment %}spacer{% endcomment %}
|From client
|From Bishop Fleming
|{% comment %}spacer{% endcomment %}
|{% comment %}spacer{% endcomment %}

{% newline %}{% newline %}
|-20%-|-10%-|-10%-|-10%-|-10%-|-5%-|-28%-|-7%-+
{% newline %}
|**Period**
|**Records due**
|**Records Received**
|**Agreed delivery date**
|**Actual delivery date**
|{% comment %}spacer{% endcomment %}
|**Comments**
|{% comment %}spacer{% endcomment %}

{% fori delivery_schedule in custom.delivery_schedule %}
{% newline %}
|{% input delivery_schedule.period %}
|{% input delivery_schedule.records_due as:date %}      
|{% input delivery_schedule.records_received as:date %}          
|{% input delivery_schedule.agreed_delivery as:date %}               
|{% input delivery_schedule.actual_delivery as:date %}
|    
|{% input delivery_schedule.comments %}
||
{% endfori %}
{% endstripnewlines %}

Will display as the following on a template:

Is there a way to change the default display text for these cells? For example, to show ‘Date’ instead of ‘records due’?

Many thanks
Joe

I can answer my own question!

{% input custom.some.thing placeholder:"enter name here" %}

I found this information on Silverfin’s GitHub page > tags > input > common parameters

1 Like