{% load i18n wagtailadmin_tags %}
{% icon name="help" %}

{% trans "Fields available to link" %}

{% if bound_model.key %}

{% trans "Inputs can be linked to any editable field on" %} {{ bound_model.label }}.

{% if bound_model.fields %} {% for field in bound_model.fields %} {% endfor %}
{% trans "Field" %} {% trans "Label" %}
{{ field.name }} {{ field.label }}
{% else %}

{% trans "This model has no editable fields." %}

{% endif %} {% else %}

{% trans "Choose a model to see the fields you can link inputs to." %}

{% endif %}