You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/release_notes.md
+15-1Lines changed: 15 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ This release includes the following features:
5
5
6
6
* User Interface Redesign - Complete UI rework to use Bootstrap.
7
7
* True In Context Editing - Editors can directly edit Html content and page titles using CKEditor's inline capability.
8
-
* Form Builder - Editors can create forms to collect information from site visitors. Forms are addressable content pages.
8
+
* Form Builder [#124] - Allow editors to create form pages that can be used to collect information from visitors
9
9
* Addressable Content Blocks - Custom content blocks (i.e. Product, Event, News Articles) can be created directly as pages in the sitemap.
10
10
* Refined Content API - Make content blocks closer in behavior to ActiveRecord.
11
11
* Improved Template Storage - Templates stored in the database no longer need to be written out to the file system. This should make it easier to deploy CMS apps to Heroku.
@@ -49,6 +49,20 @@ class Product < ActiveRecord::Base
Allow editors to create form pages that can be used to collect information from visitors (i.e. Contact Us, Support requests, etc). Basically, any quick collect a few fields using a consistent form styling.
56
+
57
+
h2. Features include:
58
+
59
+
1. Forms can have multiple fields which can be text fields, textareas or multiple choice dropdowns. Field management is done via AJAX and fields can be added/reordered/removed without leaving the page.
60
+
2. Fields can be required, have instructions and default values. Choices are added as lines of text for each dropdown field. Dropdowns use the first value as the default.
61
+
3. Entries are stored in the database and can optionally notify someone via email when new submissions are created.
62
+
4. Editors can manage entries via the admin (CRUD)
63
+
5. Visitors can be redirected to another URL after submitting their entry or display a customizable 'success' message.
64
+
6. Forms generate the HTML display using bootstrap's CSS by default. Projects can customize this in the application.rb with config.cms.form_builder_css
0 commit comments