{% extends "base.html" %} {% block title %}{{ action }} Custom Field - Admin{% endblock %} {% block content %}

{{ action }} Custom Field

{{ action }} Field
{{ form.hidden_tag() }}
{{ form.name.label(class="form-label") }} {{ form.name(class="form-control", placeholder="e.g. location, website, real_name") }} Lowercase letters, numbers, underscores only. Cannot be changed after creation. {% if action == 'Edit' and field %}
{{ field.name }} (fixed)
{% endif %} {% for error in form.name.errors %}
{{ error }}
{% endfor %}
{{ form.label.label(class="form-label") }} {{ form.label(class="form-control", placeholder="e.g. Location, Website, Real Name") }} Shown to users on their profile page. {% for error in form.label.errors %}
{{ error }}
{% endfor %}
{{ form.field_type.label(class="form-label") }}
{{ form.sort_order.label(class="form-label") }} {{ form.sort_order(class="form-control", style="width:100px") }} Lower numbers appear first.
{{ form.required(class="form-check-input") }} {{ form.required.label(class="form-check-label") }}
{{ form.show_in_profile(class="form-check-input") }} {{ form.show_in_profile.label(class="form-check-label") }}
When enabled, this field appears on public user profiles.
{{ form.submit(class="btn btn-primary") }} Cancel
{% endblock %}