{% extends 'base.html' %} {% load static %} {% block title %}Form Builder - {{ form.title }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% csrf_token %}

Form Builder

{{ form.title }}

Preview Form Add Field
Form Fields {{ fields.count }}
{% if fields %}
{% for field in fields %}
{{ field.label }} {% if field.is_required %} * {% endif %}
{{ field.get_field_type_display }} {% if field.help_text %} {{ field.help_text|truncatewords:10 }} {% endif %}
{% endfor %}
{% else %}

No fields yet

Add your first field to get started building your form.

Add First Field
{% endif %}
Form Info
Status:
{% if form.can_accept_submissions %} Active {% else %} Inactive {% endif %}
Fields:
{{ fields.count }}
Responses:
{{ form.get_response_count }}
Created:
{{ form.created_at|date:"M d, Y" }}
{% if form.expires_at %}
Expires:
{{ form.expires_at|date:"M d, Y H:i" }}
{% endif %}
Share Form
Share this URL to collect responses
{% endblock %} {% block extra_js %} {% endblock %}