{"id":21029930,"url":"https://github.com/kitconcept/kitconcept.voltoformbuilder","last_synced_at":"2026-04-21T21:31:03.132Z","repository":{"id":75201842,"uuid":"127332781","full_name":"kitconcept/kitconcept.voltoformbuilder","owner":"kitconcept","description":"Form Generator for Plone 6 (Volto)","archived":false,"fork":false,"pushed_at":"2020-07-15T10:32:16.000Z","size":855,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-02-17T11:31:36.089Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kitconcept.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGES.rst","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-03-29T18:39:32.000Z","updated_at":"2020-07-15T10:32:19.000Z","dependencies_parsed_at":"2023-07-29T20:03:45.245Z","dependency_job_id":null,"html_url":"https://github.com/kitconcept/kitconcept.voltoformbuilder","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kitconcept/kitconcept.voltoformbuilder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kitconcept%2Fkitconcept.voltoformbuilder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kitconcept%2Fkitconcept.voltoformbuilder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kitconcept%2Fkitconcept.voltoformbuilder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kitconcept%2Fkitconcept.voltoformbuilder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kitconcept","download_url":"https://codeload.github.com/kitconcept/kitconcept.voltoformbuilder/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kitconcept%2Fkitconcept.voltoformbuilder/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32110770,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-21T11:25:29.218Z","status":"ssl_error","status_checked_at":"2026-04-21T11:25:28.499Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-19T12:15:04.522Z","updated_at":"2026-04-21T21:31:03.111Z","avatar_url":"https://github.com/kitconcept.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":".. This README is meant for consumption by humans and pypi. Pypi can render rst files so please do not use Sphinx features.\n   If you want to learn more about writing documentation, please check out: http://docs.plone.org/about/documentation_styleguide.html\n   This text does not appear on pypi or github. It is a comment.\n\n==============================================================================\nkitconcept.voltoformbuilder\n==============================================================================\n\n.. image:: https://travis-ci.org/kitconcept/kitconcept.voltoformbuilder.svg?branch=master\n    :target: https://travis-ci.org/kitconcept/kitconcept.voltoformbuilder\n\n.. image:: https://img.shields.io/pypi/status/kitconcept.voltoformbuilder.svg\n    :target: https://pypi.python.org/pypi/kitconcept.voltoformbuilder/\n    :alt: Egg Status\n\n.. image:: https://img.shields.io/pypi/v/kitconcept.voltoformbuilder.svg\n    :target: https://pypi.python.org/pypi/kitconcept.voltoformbuilder\n    :alt: Latest Version\n\n.. image:: https://img.shields.io/pypi/l/kitconcept.voltoformbuilder.svg\n    :target: https://pypi.python.org/pypi/kitconcept.voltoformbuilder\n    :alt: License\n\n|\n\n.. image:: https://raw.githubusercontent.com/kitconcept/kitconcept.voltoformbuilder/master/kitconcept.png\n   :alt: kitconcept\n   :target: https://kitconcept.com/\n\nkitconcept.voltoformbuilder allows to submit form data on a content object that implements the IBlocks behavior.\n\nFeatures\n--------\n\n- Submit a form\n- Send an email as form action\n- Store data of the form submissions as JSON/CSV\n\nExamples\n--------\n\nThis add-on can be seen in action at the following sites:\n- Is there a page on the internet where everybody can see the features?\n\n\nDocumentation\n-------------\n\nSubmit form data::\n\n    POST\n    /Plone/my-document/@form\n    Accept: Application/json\n    Content-Type: application/json\n\n    {\n        \"email\": \"jane@example.com\",\n        \"subject\": \"hi from jane\",\n        \"comment\": \"hi there\",\n    }\n\nGet all submitted form data::\n\n    GET\n    /Plone/my-document/@form\n    Accept: Application/json\n\nResponse::\n\n    [\n        {\n            \"email\": \"john@example.com\",\n            \"subject\": \"hello world\",\n            \"comment\": \"lorem ipsum\",\n        },\n        {\n            \"email\": \"jane@example.com\",\n            \"subject\": \"hi from jane\",\n            \"comment\": \"hi there\",\n        }\n    ]\n\nTranslations\n------------\n\nThis product has been translated into\n\n- Klingon (thanks, K'Plai)\n\n\nInstallation\n------------\n\nInstall kitconcept.voltoformbuilder by adding it to your buildout::\n\n    [buildout]\n\n    ...\n\n    eggs =\n        kitconcept.voltoformbuilder\n\n\nand then running ``bin/buildout``\n\n\nContribute\n----------\n\n- Issue Tracker: https://github.com/collective/kitconcept.voltoformbuilder/issues\n- Source Code: https://github.com/collective/kitconcept.voltoformbuilder\n- Documentation: https://docs.plone.org/foo/bar\n\n\nSupport\n-------\n\nIf you are having issues, please let us know.\nSend us an email at info@kitconcept.com.\n\n\nLicense\n-------\n\nThe project is licensed under the GPLv2.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkitconcept%2Fkitconcept.voltoformbuilder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkitconcept%2Fkitconcept.voltoformbuilder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkitconcept%2Fkitconcept.voltoformbuilder/lists"}