{% extends "layout.html" %} {% block title %}Manage AR Fields - KCAP Admin{% endblock %} {% block content %}

Manage AR Content Fields

Configure the fields that will be returned by the /arcontentfields and /arinfo endpoints.

Back to Admin
Current AR Fields
{% if custom_fields %} {% for field in custom_fields %} {% endfor %}
Field Name Label Type Editable Display Order Actions
{{ field.fieldName }} {{ field.label }} {{ field.fieldType }} {{ field.editable }} {{ field.displayOrder }}
{% else %}

No custom fields defined. Default fields will be used.

{% endif %}
Add/Edit AR Field
Use underscore prefix for system fields (e.g., _id, _price)
{% endblock %}