{% extends "base.html" %} {% block title %}Profile Fields - Admin{% endblock %} {% block content %}

Profile Fields

Built-in Fields
{% for field_name, label in builtin_fields %} {% endfor %}
Field Status
{{ label }} {% if builtin_config[field_name] %} Enabled {% else %} Disabled {% endif %}
Custom Fields
Add Field
{% if fields %} {% for f in fields %} {% endfor %}
Order Name (slug) Label Type Required Public Actions
{{ f.sort_order }} {{ f.name }} {{ f.label }} {{ f.field_type }} {% if f.required %} {% else %} {% endif %} {% if f.show_in_profile %} {% else %} {% endif %}
{% else %}
No custom fields defined yet. Add one.
{% endif %}
Types: text — single-line text  |  textarea — multi-line text  |  url — URL with link  |  number — numeric value  |  select — dropdown (define choices below)
{% endblock %}