{{ url }}

url Properties

Field containing a URL.

Field Type Description
object_type string Will always be "url".
is_valid True|False True if the value is not empty.
value string The URL as input into the field.
url_type string The type of object selected as a URL. Options are 'None', 'Custom', 'Entity', 'Image', 'Document', 'Email', 'Tel', and 'Javascript'.
reference_guid string The unique identifier for the selected object when url_type is either 'Entity', 'Image', or 'Document'.
entity entity The entity object that this URL links to.
image image The image object that this url links to.
document document The document object that this url links to.
output html The URL as input into the field.
output_in_list html Same as output.
field_id string The identifier for this field.

Examples

Create Link with URL field

Copy
{% if entity.inspiration_url.is_valid %}


Inspired By {{ entity.inspiration_url }}

{% endif %}