On your custom Page Template for or public form, you can show or hide information depending on the link mode: cretin (default mode), edition, or read mode.
To do this, we can include a condition as the one shown below:
{% if mode == 'public_read' %} <button type="button">Click Me!</button> {% endif %}
In this example, the custom template for your public form will show a button with the text "Click me!" when the mode of the link is read.
Related articles
Custom design for public forms
Comments
0 comments
Please sign in to leave a comment.