record_label

Each record in Lektor has a configured Record label that is used by the admin interface to show a human readable version of it. Typically this is the title or something similar. This functionality can also be used outside of the admin panel. This is particularly useful when rendering children of a page that might use different independent models.

Example

<ul>
{% for child in this.children %}
  <li><a href="{{ child|url }}">{{ child.record_label }}</a></li>
{% endfor %}
</ul>

Comments