├── .circleci └── config.yml ├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── demo ├── .gitignore ├── Makefile ├── demo │ ├── __init__.py │ ├── builder │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── static │ │ │ └── assets │ │ │ │ ├── csrftoken.js │ │ │ │ ├── formidable.css │ │ │ │ ├── formidable.js │ │ │ │ ├── vendor.css │ │ │ │ └── vendor.js │ │ ├── templates │ │ │ └── formidable │ │ │ │ ├── formidable_base.html │ │ │ │ ├── formidable_builder.html │ │ │ │ ├── formidable_detail.html │ │ │ │ ├── formidable_form.html │ │ │ │ └── formidable_list.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── extra_field_toolbox.py │ ├── formidable_accesses.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── populate.py │ ├── security.py │ ├── settings.py │ ├── settings_test_pg.py │ ├── templates │ │ └── preview.html │ ├── urls.py │ ├── views.py │ └── wsgi.py ├── fixtures │ └── augmentation_heures.json ├── manage.py ├── requirements-demo.pip ├── static │ └── .gitkeep └── tests │ ├── __init__.py │ ├── fixtures │ ├── __init__.py │ ├── conditions-contextualization.json │ ├── drop-down-conditions.json │ ├── form-data-changed.json │ ├── form-data.json │ ├── form-schema-extra-fields.json │ ├── migration-form-data-expected.json │ ├── migration-form-data-input.json │ ├── multiple-choices-conditions.json │ ├── test_conditions.py │ └── wrong-conditions.json │ ├── json_migrations │ ├── 0001_rename_helptext.py │ ├── 0002_add_version.py │ └── __init__.py │ ├── perfs │ ├── test_end_point.perf.yml │ ├── test_forms.perf.yml │ ├── test_integration.perf.yml │ └── test_perfs_rec.perf.yml │ ├── serializers │ ├── __init__.py │ ├── test_formidable_serializer.py │ └── test_validations.py │ ├── test_app.py │ ├── test_conditions.py │ ├── test_custom_views.py │ ├── test_defaults_with_accesses.py │ ├── test_end_point.py │ ├── test_exception_handler.py │ ├── test_extra_field_filler.py │ ├── test_field_parameters.py │ ├── test_fields.py │ ├── test_form_from_schema.py │ ├── test_forms.py │ ├── test_from_form.py │ ├── test_integration.py │ ├── test_integration_xss.py │ ├── test_json_migration_utils.py │ ├── test_json_migrations.py │ ├── test_models.py │ ├── test_perfs_rec.py │ ├── test_permissions.py │ ├── test_post_save_callbacks.py │ ├── test_post_save_callbacks_regression_tests.py │ └── test_validators.py ├── docs ├── .gitignore ├── Makefile ├── package-lock.json ├── package.json ├── requirements.pip ├── setup.cfg ├── source │ ├── _static │ │ ├── django_graph.png │ │ ├── formidable-logo.png │ │ ├── specs │ │ │ └── formidable.json │ │ └── swagger-ui │ │ │ ├── README.md │ │ │ ├── absolute-path.js │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── index.html │ │ │ ├── index.js │ │ │ ├── oauth2-redirect.html │ │ │ ├── package.json │ │ │ ├── swagger-ui-bundle.js │ │ │ ├── swagger-ui-bundle.js.map │ │ │ ├── swagger-ui-standalone-preset.js │ │ │ ├── swagger-ui-standalone-preset.js.map │ │ │ ├── swagger-ui.css │ │ │ ├── swagger-ui.css.map │ │ │ ├── swagger-ui.js │ │ │ └── swagger-ui.js.map │ ├── api.rst │ ├── callbacks.rst │ ├── conf.py │ ├── deprecations.rst │ ├── dev.rst │ ├── external-field-plugins.rst │ ├── form-specs.rst │ ├── forms.rst │ ├── index.rst │ ├── install.rst │ ├── intro.rst │ ├── maintainers.rst │ ├── security.rst │ └── translations.rst ├── swagger │ └── formidable.yml └── tests │ ├── __init__.py │ ├── fixtures │ ├── 0000_empty.json │ ├── 0001_just_id.json │ ├── 0002_id_label.json │ ├── 0003_id_not_integer.json │ ├── 0004_id_label_description.json │ ├── 0010_wrong_type_field_dict.json │ ├── 0010_wrong_type_field_int.json │ ├── 0011_empty_fields.json │ ├── 0012_fields_empty_object.json │ ├── 0012_fields_ok.json │ ├── 0013_fields_placeholder.json │ ├── 0014_fields_multiple.json │ ├── 0015_fields_items.json │ ├── 0016_fields_accesses.json │ ├── 0017_fields_validations.json │ ├── 0018_fields_defaults.json │ ├── 0020_simple_condition.json │ ├── 0021_id_label_description_null.json │ └── 0022_id_label_description_empty.json │ ├── test_check_schema.py │ ├── test_fields.py │ ├── test_forms.py │ ├── test_forms_conditions.py │ └── test_forms_field_validations.py ├── formidable ├── __init__.py ├── accesses.py ├── app.py ├── constants.py ├── exception_handler.py ├── exceptions.py ├── forms │ ├── __init__.py │ ├── boundfield.py │ ├── conditions.py │ ├── field_builder.py │ ├── fields.py │ ├── validations │ │ └── __init__.py │ └── widgets.py ├── json_migrations │ ├── 0001_add_version.py │ ├── 0002_rename_helptext_to_description.py │ ├── 0003_uncontextualize_schema.py │ ├── 0004_add_conditions.py │ ├── 0005_drop_presets.py │ ├── __init__.py │ └── utils.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_remove_access_display.py │ ├── 0003_item_label_no_size_limit.py │ ├── 0004_formidable_conditions.py │ ├── 0005_conditions_default.py │ ├── 0006_drop_preset_fields.py │ ├── 0007_drop_preset_tables.py │ ├── 0008_formidable_item_value_field_size.py │ ├── 0009_field_parameters.py │ ├── 0010_auto_20200213_1010.py │ ├── 0011_allow_empty_description.py │ └── __init__.py ├── models.py ├── permissions.py ├── register.py ├── security.py ├── serializers │ ├── __init__.py │ ├── access.py │ ├── child_proxy.py │ ├── common.py │ ├── defaults.py │ ├── fields.py │ ├── forms.py │ ├── items.py │ ├── list.py │ └── validation.py ├── urls.py ├── utils.py ├── validators.py └── views.py ├── setup.cfg ├── setup.py └── tox.ini /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/README.rst -------------------------------------------------------------------------------- /demo/.gitignore: -------------------------------------------------------------------------------- 1 | db.sqlite3 2 | -------------------------------------------------------------------------------- /demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/Makefile -------------------------------------------------------------------------------- /demo/demo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/demo/__init__.py -------------------------------------------------------------------------------- /demo/demo/builder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/demo/builder/admin.py: -------------------------------------------------------------------------------- 1 | # Left intentionally blank. 2 | -------------------------------------------------------------------------------- /demo/demo/builder/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/demo/builder/models.py: -------------------------------------------------------------------------------- 1 | # Left intentionally blank. 2 | -------------------------------------------------------------------------------- /demo/demo/builder/static/assets/csrftoken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/demo/builder/static/assets/csrftoken.js -------------------------------------------------------------------------------- /demo/demo/builder/static/assets/formidable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/demo/builder/static/assets/formidable.css -------------------------------------------------------------------------------- /demo/demo/builder/static/assets/formidable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/demo/builder/static/assets/formidable.js -------------------------------------------------------------------------------- /demo/demo/builder/static/assets/vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/demo/builder/static/assets/vendor.css -------------------------------------------------------------------------------- /demo/demo/builder/static/assets/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/demo/builder/static/assets/vendor.js -------------------------------------------------------------------------------- /demo/demo/builder/templates/formidable/formidable_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/demo/builder/templates/formidable/formidable_base.html -------------------------------------------------------------------------------- /demo/demo/builder/templates/formidable/formidable_builder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/demo/builder/templates/formidable/formidable_builder.html -------------------------------------------------------------------------------- /demo/demo/builder/templates/formidable/formidable_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/demo/builder/templates/formidable/formidable_detail.html -------------------------------------------------------------------------------- /demo/demo/builder/templates/formidable/formidable_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/demo/builder/templates/formidable/formidable_form.html -------------------------------------------------------------------------------- /demo/demo/builder/templates/formidable/formidable_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/demo/builder/templates/formidable/formidable_list.html -------------------------------------------------------------------------------- /demo/demo/builder/tests.py: -------------------------------------------------------------------------------- 1 | # Left intentionally blank. 2 | -------------------------------------------------------------------------------- /demo/demo/builder/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/demo/builder/urls.py -------------------------------------------------------------------------------- /demo/demo/builder/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/demo/builder/views.py -------------------------------------------------------------------------------- /demo/demo/extra_field_toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/demo/extra_field_toolbox.py -------------------------------------------------------------------------------- /demo/demo/formidable_accesses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/demo/formidable_accesses.py -------------------------------------------------------------------------------- /demo/demo/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/demo/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/demo/management/commands/populate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/demo/management/commands/populate.py -------------------------------------------------------------------------------- /demo/demo/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/demo/security.py -------------------------------------------------------------------------------- /demo/demo/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/demo/settings.py -------------------------------------------------------------------------------- /demo/demo/settings_test_pg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/demo/settings_test_pg.py -------------------------------------------------------------------------------- /demo/demo/templates/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/demo/templates/preview.html -------------------------------------------------------------------------------- /demo/demo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/demo/urls.py -------------------------------------------------------------------------------- /demo/demo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/demo/views.py -------------------------------------------------------------------------------- /demo/demo/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/demo/wsgi.py -------------------------------------------------------------------------------- /demo/fixtures/augmentation_heures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/fixtures/augmentation_heures.json -------------------------------------------------------------------------------- /demo/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/manage.py -------------------------------------------------------------------------------- /demo/requirements-demo.pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/requirements-demo.pip -------------------------------------------------------------------------------- /demo/static/.gitkeep: -------------------------------------------------------------------------------- 1 | .gitkeep -------------------------------------------------------------------------------- /demo/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/__init__.py -------------------------------------------------------------------------------- /demo/tests/fixtures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/tests/fixtures/conditions-contextualization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/fixtures/conditions-contextualization.json -------------------------------------------------------------------------------- /demo/tests/fixtures/drop-down-conditions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/fixtures/drop-down-conditions.json -------------------------------------------------------------------------------- /demo/tests/fixtures/form-data-changed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/fixtures/form-data-changed.json -------------------------------------------------------------------------------- /demo/tests/fixtures/form-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/fixtures/form-data.json -------------------------------------------------------------------------------- /demo/tests/fixtures/form-schema-extra-fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/fixtures/form-schema-extra-fields.json -------------------------------------------------------------------------------- /demo/tests/fixtures/migration-form-data-expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/fixtures/migration-form-data-expected.json -------------------------------------------------------------------------------- /demo/tests/fixtures/migration-form-data-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/fixtures/migration-form-data-input.json -------------------------------------------------------------------------------- /demo/tests/fixtures/multiple-choices-conditions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/fixtures/multiple-choices-conditions.json -------------------------------------------------------------------------------- /demo/tests/fixtures/test_conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/fixtures/test_conditions.py -------------------------------------------------------------------------------- /demo/tests/fixtures/wrong-conditions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/fixtures/wrong-conditions.json -------------------------------------------------------------------------------- /demo/tests/json_migrations/0001_rename_helptext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/json_migrations/0001_rename_helptext.py -------------------------------------------------------------------------------- /demo/tests/json_migrations/0002_add_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/json_migrations/0002_add_version.py -------------------------------------------------------------------------------- /demo/tests/json_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/tests/perfs/test_end_point.perf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/perfs/test_end_point.perf.yml -------------------------------------------------------------------------------- /demo/tests/perfs/test_forms.perf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/perfs/test_forms.perf.yml -------------------------------------------------------------------------------- /demo/tests/perfs/test_integration.perf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/perfs/test_integration.perf.yml -------------------------------------------------------------------------------- /demo/tests/perfs/test_perfs_rec.perf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/perfs/test_perfs_rec.perf.yml -------------------------------------------------------------------------------- /demo/tests/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/tests/serializers/test_formidable_serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/serializers/test_formidable_serializer.py -------------------------------------------------------------------------------- /demo/tests/serializers/test_validations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/serializers/test_validations.py -------------------------------------------------------------------------------- /demo/tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/test_app.py -------------------------------------------------------------------------------- /demo/tests/test_conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/test_conditions.py -------------------------------------------------------------------------------- /demo/tests/test_custom_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/test_custom_views.py -------------------------------------------------------------------------------- /demo/tests/test_defaults_with_accesses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/test_defaults_with_accesses.py -------------------------------------------------------------------------------- /demo/tests/test_end_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/test_end_point.py -------------------------------------------------------------------------------- /demo/tests/test_exception_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/test_exception_handler.py -------------------------------------------------------------------------------- /demo/tests/test_extra_field_filler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/test_extra_field_filler.py -------------------------------------------------------------------------------- /demo/tests/test_field_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/test_field_parameters.py -------------------------------------------------------------------------------- /demo/tests/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/test_fields.py -------------------------------------------------------------------------------- /demo/tests/test_form_from_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/test_form_from_schema.py -------------------------------------------------------------------------------- /demo/tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/test_forms.py -------------------------------------------------------------------------------- /demo/tests/test_from_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/test_from_form.py -------------------------------------------------------------------------------- /demo/tests/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/test_integration.py -------------------------------------------------------------------------------- /demo/tests/test_integration_xss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/test_integration_xss.py -------------------------------------------------------------------------------- /demo/tests/test_json_migration_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/test_json_migration_utils.py -------------------------------------------------------------------------------- /demo/tests/test_json_migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/test_json_migrations.py -------------------------------------------------------------------------------- /demo/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/test_models.py -------------------------------------------------------------------------------- /demo/tests/test_perfs_rec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/test_perfs_rec.py -------------------------------------------------------------------------------- /demo/tests/test_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/test_permissions.py -------------------------------------------------------------------------------- /demo/tests/test_post_save_callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/test_post_save_callbacks.py -------------------------------------------------------------------------------- /demo/tests/test_post_save_callbacks_regression_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/test_post_save_callbacks_regression_tests.py -------------------------------------------------------------------------------- /demo/tests/test_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/demo/tests/test_validators.py -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/requirements.pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/requirements.pip -------------------------------------------------------------------------------- /docs/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/setup.cfg -------------------------------------------------------------------------------- /docs/source/_static/django_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/_static/django_graph.png -------------------------------------------------------------------------------- /docs/source/_static/formidable-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/_static/formidable-logo.png -------------------------------------------------------------------------------- /docs/source/_static/specs/formidable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/_static/specs/formidable.json -------------------------------------------------------------------------------- /docs/source/_static/swagger-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/_static/swagger-ui/README.md -------------------------------------------------------------------------------- /docs/source/_static/swagger-ui/absolute-path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/_static/swagger-ui/absolute-path.js -------------------------------------------------------------------------------- /docs/source/_static/swagger-ui/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/_static/swagger-ui/favicon-16x16.png -------------------------------------------------------------------------------- /docs/source/_static/swagger-ui/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/_static/swagger-ui/favicon-32x32.png -------------------------------------------------------------------------------- /docs/source/_static/swagger-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/_static/swagger-ui/index.html -------------------------------------------------------------------------------- /docs/source/_static/swagger-ui/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/_static/swagger-ui/index.js -------------------------------------------------------------------------------- /docs/source/_static/swagger-ui/oauth2-redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/_static/swagger-ui/oauth2-redirect.html -------------------------------------------------------------------------------- /docs/source/_static/swagger-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/_static/swagger-ui/package.json -------------------------------------------------------------------------------- /docs/source/_static/swagger-ui/swagger-ui-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/_static/swagger-ui/swagger-ui-bundle.js -------------------------------------------------------------------------------- /docs/source/_static/swagger-ui/swagger-ui-bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/_static/swagger-ui/swagger-ui-bundle.js.map -------------------------------------------------------------------------------- /docs/source/_static/swagger-ui/swagger-ui-standalone-preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/_static/swagger-ui/swagger-ui-standalone-preset.js -------------------------------------------------------------------------------- /docs/source/_static/swagger-ui/swagger-ui-standalone-preset.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/_static/swagger-ui/swagger-ui-standalone-preset.js.map -------------------------------------------------------------------------------- /docs/source/_static/swagger-ui/swagger-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/_static/swagger-ui/swagger-ui.css -------------------------------------------------------------------------------- /docs/source/_static/swagger-ui/swagger-ui.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/_static/swagger-ui/swagger-ui.css.map -------------------------------------------------------------------------------- /docs/source/_static/swagger-ui/swagger-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/_static/swagger-ui/swagger-ui.js -------------------------------------------------------------------------------- /docs/source/_static/swagger-ui/swagger-ui.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/_static/swagger-ui/swagger-ui.js.map -------------------------------------------------------------------------------- /docs/source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/api.rst -------------------------------------------------------------------------------- /docs/source/callbacks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/callbacks.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/deprecations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/deprecations.rst -------------------------------------------------------------------------------- /docs/source/dev.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/dev.rst -------------------------------------------------------------------------------- /docs/source/external-field-plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/external-field-plugins.rst -------------------------------------------------------------------------------- /docs/source/form-specs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/form-specs.rst -------------------------------------------------------------------------------- /docs/source/forms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/forms.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/install.rst -------------------------------------------------------------------------------- /docs/source/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/intro.rst -------------------------------------------------------------------------------- /docs/source/maintainers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/maintainers.rst -------------------------------------------------------------------------------- /docs/source/security.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/security.rst -------------------------------------------------------------------------------- /docs/source/translations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/source/translations.rst -------------------------------------------------------------------------------- /docs/swagger/formidable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/swagger/formidable.yml -------------------------------------------------------------------------------- /docs/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/tests/__init__.py -------------------------------------------------------------------------------- /docs/tests/fixtures/0000_empty.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/tests/fixtures/0001_just_id.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": 1 3 | } 4 | -------------------------------------------------------------------------------- /docs/tests/fixtures/0002_id_label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/tests/fixtures/0002_id_label.json -------------------------------------------------------------------------------- /docs/tests/fixtures/0003_id_not_integer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/tests/fixtures/0003_id_not_integer.json -------------------------------------------------------------------------------- /docs/tests/fixtures/0004_id_label_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/tests/fixtures/0004_id_label_description.json -------------------------------------------------------------------------------- /docs/tests/fixtures/0010_wrong_type_field_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/tests/fixtures/0010_wrong_type_field_dict.json -------------------------------------------------------------------------------- /docs/tests/fixtures/0010_wrong_type_field_int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/tests/fixtures/0010_wrong_type_field_int.json -------------------------------------------------------------------------------- /docs/tests/fixtures/0011_empty_fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/tests/fixtures/0011_empty_fields.json -------------------------------------------------------------------------------- /docs/tests/fixtures/0012_fields_empty_object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/tests/fixtures/0012_fields_empty_object.json -------------------------------------------------------------------------------- /docs/tests/fixtures/0012_fields_ok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/tests/fixtures/0012_fields_ok.json -------------------------------------------------------------------------------- /docs/tests/fixtures/0013_fields_placeholder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/tests/fixtures/0013_fields_placeholder.json -------------------------------------------------------------------------------- /docs/tests/fixtures/0014_fields_multiple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/tests/fixtures/0014_fields_multiple.json -------------------------------------------------------------------------------- /docs/tests/fixtures/0015_fields_items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/tests/fixtures/0015_fields_items.json -------------------------------------------------------------------------------- /docs/tests/fixtures/0016_fields_accesses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/tests/fixtures/0016_fields_accesses.json -------------------------------------------------------------------------------- /docs/tests/fixtures/0017_fields_validations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/tests/fixtures/0017_fields_validations.json -------------------------------------------------------------------------------- /docs/tests/fixtures/0018_fields_defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/tests/fixtures/0018_fields_defaults.json -------------------------------------------------------------------------------- /docs/tests/fixtures/0020_simple_condition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/tests/fixtures/0020_simple_condition.json -------------------------------------------------------------------------------- /docs/tests/fixtures/0021_id_label_description_null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/tests/fixtures/0021_id_label_description_null.json -------------------------------------------------------------------------------- /docs/tests/fixtures/0022_id_label_description_empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/tests/fixtures/0022_id_label_description_empty.json -------------------------------------------------------------------------------- /docs/tests/test_check_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/tests/test_check_schema.py -------------------------------------------------------------------------------- /docs/tests/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/tests/test_fields.py -------------------------------------------------------------------------------- /docs/tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/tests/test_forms.py -------------------------------------------------------------------------------- /docs/tests/test_forms_conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/tests/test_forms_conditions.py -------------------------------------------------------------------------------- /docs/tests/test_forms_field_validations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/docs/tests/test_forms_field_validations.py -------------------------------------------------------------------------------- /formidable/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/__init__.py -------------------------------------------------------------------------------- /formidable/accesses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/accesses.py -------------------------------------------------------------------------------- /formidable/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/app.py -------------------------------------------------------------------------------- /formidable/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/constants.py -------------------------------------------------------------------------------- /formidable/exception_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/exception_handler.py -------------------------------------------------------------------------------- /formidable/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/exceptions.py -------------------------------------------------------------------------------- /formidable/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/forms/__init__.py -------------------------------------------------------------------------------- /formidable/forms/boundfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/forms/boundfield.py -------------------------------------------------------------------------------- /formidable/forms/conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/forms/conditions.py -------------------------------------------------------------------------------- /formidable/forms/field_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/forms/field_builder.py -------------------------------------------------------------------------------- /formidable/forms/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/forms/fields.py -------------------------------------------------------------------------------- /formidable/forms/validations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /formidable/forms/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/forms/widgets.py -------------------------------------------------------------------------------- /formidable/json_migrations/0001_add_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/json_migrations/0001_add_version.py -------------------------------------------------------------------------------- /formidable/json_migrations/0002_rename_helptext_to_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/json_migrations/0002_rename_helptext_to_description.py -------------------------------------------------------------------------------- /formidable/json_migrations/0003_uncontextualize_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/json_migrations/0003_uncontextualize_schema.py -------------------------------------------------------------------------------- /formidable/json_migrations/0004_add_conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/json_migrations/0004_add_conditions.py -------------------------------------------------------------------------------- /formidable/json_migrations/0005_drop_presets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/json_migrations/0005_drop_presets.py -------------------------------------------------------------------------------- /formidable/json_migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/json_migrations/__init__.py -------------------------------------------------------------------------------- /formidable/json_migrations/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/json_migrations/utils.py -------------------------------------------------------------------------------- /formidable/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/migrations/0001_initial.py -------------------------------------------------------------------------------- /formidable/migrations/0002_remove_access_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/migrations/0002_remove_access_display.py -------------------------------------------------------------------------------- /formidable/migrations/0003_item_label_no_size_limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/migrations/0003_item_label_no_size_limit.py -------------------------------------------------------------------------------- /formidable/migrations/0004_formidable_conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/migrations/0004_formidable_conditions.py -------------------------------------------------------------------------------- /formidable/migrations/0005_conditions_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/migrations/0005_conditions_default.py -------------------------------------------------------------------------------- /formidable/migrations/0006_drop_preset_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/migrations/0006_drop_preset_fields.py -------------------------------------------------------------------------------- /formidable/migrations/0007_drop_preset_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/migrations/0007_drop_preset_tables.py -------------------------------------------------------------------------------- /formidable/migrations/0008_formidable_item_value_field_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/migrations/0008_formidable_item_value_field_size.py -------------------------------------------------------------------------------- /formidable/migrations/0009_field_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/migrations/0009_field_parameters.py -------------------------------------------------------------------------------- /formidable/migrations/0010_auto_20200213_1010.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/migrations/0010_auto_20200213_1010.py -------------------------------------------------------------------------------- /formidable/migrations/0011_allow_empty_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/migrations/0011_allow_empty_description.py -------------------------------------------------------------------------------- /formidable/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /formidable/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/models.py -------------------------------------------------------------------------------- /formidable/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/permissions.py -------------------------------------------------------------------------------- /formidable/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/register.py -------------------------------------------------------------------------------- /formidable/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/security.py -------------------------------------------------------------------------------- /formidable/serializers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/serializers/__init__.py -------------------------------------------------------------------------------- /formidable/serializers/access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/serializers/access.py -------------------------------------------------------------------------------- /formidable/serializers/child_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/serializers/child_proxy.py -------------------------------------------------------------------------------- /formidable/serializers/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/serializers/common.py -------------------------------------------------------------------------------- /formidable/serializers/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/serializers/defaults.py -------------------------------------------------------------------------------- /formidable/serializers/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/serializers/fields.py -------------------------------------------------------------------------------- /formidable/serializers/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/serializers/forms.py -------------------------------------------------------------------------------- /formidable/serializers/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/serializers/items.py -------------------------------------------------------------------------------- /formidable/serializers/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/serializers/list.py -------------------------------------------------------------------------------- /formidable/serializers/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/serializers/validation.py -------------------------------------------------------------------------------- /formidable/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/urls.py -------------------------------------------------------------------------------- /formidable/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/utils.py -------------------------------------------------------------------------------- /formidable/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/validators.py -------------------------------------------------------------------------------- /formidable/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/formidable/views.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peopledoc/django-formidable/HEAD/tox.ini --------------------------------------------------------------------------------