A simple Django app to conduct Web-based survey
Project description
Django Form Survey
Django form survey is an application Django to easier create form survey and easy integrated for your project.
Table of content
Installation
-
Install django-form-surveys using:
pip install django-form-surveys
- Add
djf_surveys
to yourINSTALLED_APPS
setting like thisINSTALLED_APPS = [ ... 'djf_surveys', 'tinymce', # dependency ]
- Add
-
Add context processor
'djf_surveys.context_processors.surveys_context'
'context_processors': [ .... 'djf_surveys.context_processors.surveys_context' ],
-
Run
python manage.py migrate
to create the djf_surveys models. -
Run
python manage.py collectstatic
to collect file static djf_surveys into project. -
Include url
djf_surveys
in your root url.... urlpatterns = [ path('admin/', admin.site.urls), ..... path('surveys/', include('djf_surveys.urls')) ]
-
Access
http://127.0.0.1:8000/surveys/dashboard/
to enter admin page to create a survey. -
Access
http://127.0.0.1:8000/surveys/
get list of survey -
Access
http://127.0.0.1:8000/surveys/{id}
get form of survey
Features
Manage a Survey
You must as superuser to manage survey. You can create, edit, delete, search and show all available survey
. To manage survey you can access http://localhost:8000/surveys/dashboard/
.
Option Survey
You can use the options below
editable
: this option allows the user to edit the answerdeletable
: this option allows the user to delete the answerduplicate entry
: this option allows users to submit more than onceprivate reponse
: this option makes the answer list only visible to admincan anonymous user
: This option allows users without authentication to submit
Questioin Type
Available field types include:
- Text
- Number
- Radio
- Select
- Multi Select
- Text Area
- URL
- Date
- Rating
Easy Sorting Question
You can drag and drop to sort question
Summary
You can see the survey summary in a charts. Summary just calculate type field "radio, select, multi_select, rating"
Download Report
You can download report as csv
Notification
You can send an email notification when the survey is submitted. To make sure it works look section Configuration
Success Page Content
You can change the content of the success page to provide specific instructions or a special message.
This use django-tinycme
. For advanced config toolbar you can see the Documentation
Configuration
There are several configurations that you can write on settings.py
Change Master Template
SURVEY_MASTER_TEMPLATE
, default='surveys/master.html'
, -> str
: This configuration to change master template using your template. You can set with your template path. Example SURVEY_MASTER_TEMPLATE = 'mywebsite/master.html'
> NB: This config will be work if on your template use block content {% block content %}
to include or render content of context from view
and your master template must be including or using Tailwind CSS.
User Photo Profile
SURVEY_USER_PHOTO_PROFILE
, default=''
, -> str
: This configuration is used to add a profile photo object that is related to the User model. Example: SURVEY_USER_PHOTO_PROFILE = 'self.user.profile.photo.url'
Field Validators
SURVEY_FIELD_VALIDATORS
, -> dict
: This configuration to override max_length of type filed email, url, text
and min_length of type filed text_area, text
# default value of SURVEY_FIELD_VALIDATORS
SURVEY_FIELD_VALIDATORS = {
'max_length': {
'email': 150,
'text': 250,
'url': 250,
'text_area': 1000
},
'min_length': {
'text_area': 100,
'text': 3
}
}
# example declare in settings.py
SURVEY_FIELD_VALIDATORS = {
'max_length': {
'email': 110,
},
'min_length': {
'text_area': 50,
}
}
Number of Pagination
SURVEY_PAGINATION_NUMBER
, -> dict
: This configuration to override number of pagination survey_list
and answer_list
# example override in settings.py
# default value 12
SURVEY_PAGINATION_NUMBER = {
'answer_list': 3,
'survey_list': 2
}
Email From
Email From
SURVEY_EMAIL_FROM
, -> str
: Enter your email from and then don't forget to define your SMTP
Anonymous Access Surveys
SURVEY_ANONYMOUS_VIEW_LIST
, -> bool
: This configuration allows anonymous access to the survey page. The survey that appears has an Anonymous submission
option.
Link Back Button On Success Page
SURVEY_LINK_BACK_ON_SUCCESS_PAGE
-> str
: This configuration is to change default link back on success page
For Contributor
- clone project
- symlink app to
demo
ln -s [path_project_djf_survey] [path_demo_djf_survey]
- create
env
development - active
env
- enter directory
demo
- now, you can access all command
manage.py
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-form-surveys-2.4.0.tar.gz
.
File metadata
- Download URL: django-form-surveys-2.4.0.tar.gz
- Upload date:
- Size: 1.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1e6f97e3e85686b8c8bf446f4e0b184481ececcad7d350c9bdd2b5f136b29d68 |
|
MD5 | 2dd08ccb72970019f8b1d9060612ddea |
|
BLAKE2b-256 | 97789da1e530af5986744b3c96d8eebb55f1a8242d261fbb0681fcd879bb4a99 |
File details
Details for the file django_form_surveys-2.4.0-py3-none-any.whl
.
File metadata
- Download URL: django_form_surveys-2.4.0-py3-none-any.whl
- Upload date:
- Size: 1.6 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f48025d5c54c7c109932a6e026245cc326a822f393af1826d1bfc486c76db3e0 |
|
MD5 | f4413089ec00e8aa25f519d26420f116 |
|
BLAKE2b-256 | 214fc624b2fb7c41baae491ba1d417d6f8c7322457e7eba27d25ae112d2732aa |