{% extends fobi_theme.base_template %} {% load i18n static %} {% block layout-stylesheets %} {% endblock layout-stylesheets %} {% block body-attrs %} class="standalone"{% endblock body-attrs %} {% block page-title %}{% trans 'Home' %}{% endblock %} {% block site-title %}{% trans "django-fobi example site" %}{% endblock site-title %} {% block navbar-menu %} {% endblock navbar-menu %} {% block main-content-wrapper %}

django-fobi

{% blocktrans %}

Welcome to `django-fobi` (later on named just `Fobi`) - a customisable, modular, developer-friendly form builder application for Django. With `Fobi` you can build Django forms using a user-friendly GUI, save or mail posted form data. Developer-friendly API allows you to build your own form elements and form handlers (mechanisms for handling the submitted form data).

{% endblocktrans %}

{% trans "Learn more" %}

{% trans "Dashboard" %}

{% url 'fobi.dashboard' as fobi_dashboard_url %} {% blocktrans with fobi_dashboard_url as dashboard_url %}

The `Fobi` dashboard, where you can see all the forms you have created, edit them (add/remove elements, form handlers), create new forms as well as remove existing ones.

Go to dashboard »

{% endblocktrans %}

{% trans "Create a form" %}

{% url 'fobi.create_form_entry' as fobi_create_form_entry_url %} {% blocktrans with fobi_create_form_entry_url as create_form_entry_url %}

Create your first form using awesome user-friendly GUI. Choose what to do with the posted data.

Create form »

{% endblocktrans %}

{% trans "See the admin part" %}

{% url 'admin:index' as fobi_admin_url %} {% blocktrans with fobi_admin_url as admin_url %}

See the Django-admin for saved data, as well as choose who to grant with permissions of using one or another `Fobi` plugin (form element or form handler).

Go to admin »

{% endblocktrans %}

{% endblock main-content-wrapper %} {% block sidebar-wrapper %} {% endblock sidebar-wrapper %}