Field types / Image
Note: You are currently reading the documentation for Bolt 2.2. Looking for the documentation for Bolt 5.2 instead?
Simple image upload/select field.
Basic Configuration:¶
cover:
type: image
Example usage in templates:¶
{{ record.cover|showimage() }}
or
{{ record.cover|thumbnail() }}
or
{{ record.cover|popup() }}
See Bolt Template tags for more info.
Options:¶
The field has a few options to change the appearance and functionality of the field.
extensions
Allows you to restrict users to only be able to upload files with certain file extensions.attrib
Can be set to either of the following:alt
Show a field for an alt text.title
Show a field for an title text.[title, alt]
Show both fields.
cover:
type: image
attrib: [title, alt]
extensions: [ gif, jpg, png ]
You can call these in your templates by using {{ record.values.image.title }}
or {{ record.values.image.alt }}
and they will also be automatically used by
bolt's image functions.
Edit this page on GitHub
Couldn't find what you were looking for? We are happy to help you in the forum, on Slack or on Github.
Couldn't find what you were looking for? We are happy to help you in the forum, on Slack or on Github.