List

Create YAML lists with an intuitive interface. It has full keyboard controls so you can use up to go up, down to go down, drag and drop to rearrange the order, and double-click to edit any item.


Preview

List Fieldtype

Templating

The example above would have the following data which can be looped in your templates.

todo:
  - 'Make sausages out of leftover tuna casserole'
  - 'Change name to Simon. Refer to self in 3rd person.'
  - 'Build a sick blanket fort'
<h3>To-Do List</h3>
<ul>
    {{ todo }}
        <li>{{ value }}</li>
    {{ /todo }}
</ul>
<h3>To-Do List</h3>
<ul>
    <li>Make sausages out of leftover tuna casserole</li>
    <li>Change name to Simon. Refer to self in 3rd person.</li>
    <li>Build a sick blanket fort</li>
</ul>

Settings

This fieldtype has no unique settings of its own, however it does respect all default settings.

Last modified on December 1, 2018