Skip to content

Commit 700a36e

Browse files
committed
Screenshots
1 parent 569c836 commit 700a36e

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

README.rst

+9-7
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,16 @@ django-forms-builder
77
Created by `Stephen McDonald <http://twitter.com/stephen_mcd>`_
88

99
A Django reusable app providing the ability for admin users to create
10-
their own forms within the admin interface drawing from a range of
10+
their own forms within the admin interface, drawing from a range of
1111
field widgets such as regular text fields, drop-down lists and file
1212
uploads. Options are also provided for controlling who gets sent email
1313
notifications when a form is submitted. All form entries are made
14-
available in the admin via CSV export.
14+
available in the admin via filterable reporting with CSV/XLS export.
15+
16+
.. image:: http://github.com/stephenmcd/django-forms-builder/raw/master/docs/img/fields.png
17+
18+
.. image:: http://github.com/stephenmcd/django-forms-builder/raw/master/docs/img/report.png
19+
1520

1621
HTML5 Features
1722
==============
@@ -39,9 +44,6 @@ from source::
3944

4045
$ python setup.py install
4146

42-
Project Configuration
43-
=====================
44-
4547
Once installed you can configure your project to use
4648
django-forms-builder with the following steps.
4749

@@ -83,8 +85,8 @@ Finally, sync your database::
8385

8486
$ python manage.py syncdb
8587

86-
As of version 0.5, django-forms-builder provides `South`_ migrations. If
87-
you use south in your project, you'll also need to run migrations::
88+
As of version 0.5, django-forms-builder provides `South`_ migrations.
89+
If you use south in your project, you'll also need to run migrations::
8890

8991
$ python manage.py migrate forms
9092

docs/img/fields.png

84.5 KB
Loading

docs/img/report.png

110 KB
Loading

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
author = "Stephen McDonald",
2828
author_email = "[email protected]",
2929
description = ("A Django reusable app providing the ability for "
30-
"admin users to create their own forms."),
30+
"admin users to create their own forms and report "
31+
"on their collected data."),
3132
long_description = open("README.rst").read(),
3233
url = "http://github.com/stephenmcd/django-forms-builder",
3334
zip_safe = False,

0 commit comments

Comments
 (0)