├── .codeclimate.yml ├── .gitignore ├── .travis.yml ├── HISTORY.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── Procfile ├── README.md ├── app.json ├── manage.py ├── requirements.txt ├── requirements ├── base.txt ├── dev.txt ├── heroku.txt └── test.txt ├── runtime.txt ├── setup.cfg ├── setup.py └── wizard_builder ├── __init__.py ├── admin ├── __init__.py ├── inlines.py ├── page_admin.py └── question_admin.py ├── apps.py ├── data_helper.py ├── fields.py ├── fixtures └── wizard_builder_data.json ├── forms.py ├── management └── commands │ ├── __init__.py │ ├── create_admins.py │ └── setup_sites.py ├── managers.py ├── migrations ├── 0001_initial.py ├── 0002_remove_formquestion_example.py ├── 0003_multisite.py ├── 0004_inheritence_downcasting.py ├── 0005_delete_constraints.py ├── 0006_many_sites.py ├── 0007_remove_conditional.py ├── 0008_remove_textpage.py ├── 0009_pagebase_to_questionpage.py ├── 0010_remove_pagebase_attrs.py ├── 0011_rename_questionpage_attrs.py ├── 0012_questionpage_to_page.py ├── 0013_questionpage_to_page_2.py ├── 0014_questionpage_to_page_3.py ├── 0015_admin_html_and_time.py ├── 0016_checkboxes.py ├── 0017_remove_unused_models.py ├── 0018_remove_multilinetext.py ├── 0019_remove_choice_extra_info_placeholder.py ├── 0020_choice_extra_info_text.py ├── 0021_choiceoption.py ├── 0022_choiceoption_typo.py ├── 0023_formquest_text_tinymce.py ├── 0024_remove_formquestion_added.py ├── 0025_auto_20170915_0948.py ├── 0026_remove_page_infobox.py ├── 0027_textarea.py ├── 0028_formquestion_type.py ├── 0029_populate_type.py ├── 0030_formquestion_meta.py ├── 0031_formquestion_choices_default.py ├── 0032_move_question_dropdown.py ├── 0033_add_temps.py ├── 0034a_move_choice_question.py ├── 0034b_move_choice_question.py ├── 0034c_move_choice_question.py ├── 0034d_move_choice_question.py ├── 0034e_move_choice_question.py ├── 0035_auto_20171025_0014.py ├── 0036_checkbox_multiplechoice_radiobutton_singlelinetext_textarea.py ├── 0037_auto_20171028_0142.py ├── 0038_checkbox_radiobutton.py ├── 0039_dropdown_proxy.py ├── 0040_populate_dropdown.py ├── 0041_remove_formquestion_is_dropdown.py ├── 0042_auto_20171101_1410.py ├── 0043_multiplechoice.py ├── 0044_auto_20171101_1412.py ├── 0045_auto_20171122_1808.py └── __init__.py ├── mocks.py ├── model_helpers.py ├── models.py ├── templates └── wizard_builder │ ├── base.html │ ├── input_extra_widget.html │ ├── input_option_extra.html │ ├── review.html │ ├── review_content.html │ ├── wizard_form.html │ ├── wizard_form_field.html │ ├── wizard_form_field_info.html │ ├── wizard_form_fields.html │ └── wizard_form_include.html ├── templatetags └── wizard_builder.py ├── tests ├── __init__.py ├── base.py ├── callisto_core_settings.py ├── settings.py ├── test_admin.py ├── test_app │ ├── __init__.py │ ├── app_settings.py │ ├── dev_settings.py │ ├── heroku_settings.py │ ├── live_settings.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── ops_settings.py │ ├── static │ │ └── .keep │ └── wsgi.py ├── test_data_helper.py ├── test_fields.py ├── test_forms.py ├── test_frontend.py ├── test_managers.py ├── test_migrations.py ├── test_models.py ├── test_sites.py ├── test_views.py └── urls.py ├── urls.py ├── version.txt ├── view_helpers.py ├── view_partials.py ├── views.py └── widgets.py /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/.travis.yml -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/Makefile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/app.json -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -r requirements/heroku.txt 2 | -------------------------------------------------------------------------------- /requirements/base.txt: -------------------------------------------------------------------------------- 1 | -e . 2 | -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/requirements/dev.txt -------------------------------------------------------------------------------- /requirements/heroku.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/requirements/heroku.txt -------------------------------------------------------------------------------- /requirements/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/requirements/test.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.6.3 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/setup.py -------------------------------------------------------------------------------- /wizard_builder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/__init__.py -------------------------------------------------------------------------------- /wizard_builder/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/admin/__init__.py -------------------------------------------------------------------------------- /wizard_builder/admin/inlines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/admin/inlines.py -------------------------------------------------------------------------------- /wizard_builder/admin/page_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/admin/page_admin.py -------------------------------------------------------------------------------- /wizard_builder/admin/question_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/admin/question_admin.py -------------------------------------------------------------------------------- /wizard_builder/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/apps.py -------------------------------------------------------------------------------- /wizard_builder/data_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/data_helper.py -------------------------------------------------------------------------------- /wizard_builder/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/fields.py -------------------------------------------------------------------------------- /wizard_builder/fixtures/wizard_builder_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/fixtures/wizard_builder_data.json -------------------------------------------------------------------------------- /wizard_builder/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/forms.py -------------------------------------------------------------------------------- /wizard_builder/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wizard_builder/management/commands/create_admins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/management/commands/create_admins.py -------------------------------------------------------------------------------- /wizard_builder/management/commands/setup_sites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/management/commands/setup_sites.py -------------------------------------------------------------------------------- /wizard_builder/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/managers.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0001_initial.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0002_remove_formquestion_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0002_remove_formquestion_example.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0003_multisite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0003_multisite.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0004_inheritence_downcasting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0004_inheritence_downcasting.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0005_delete_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0005_delete_constraints.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0006_many_sites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0006_many_sites.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0007_remove_conditional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0007_remove_conditional.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0008_remove_textpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0008_remove_textpage.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0009_pagebase_to_questionpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0009_pagebase_to_questionpage.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0010_remove_pagebase_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0010_remove_pagebase_attrs.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0011_rename_questionpage_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0011_rename_questionpage_attrs.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0012_questionpage_to_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0012_questionpage_to_page.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0013_questionpage_to_page_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0013_questionpage_to_page_2.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0014_questionpage_to_page_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0014_questionpage_to_page_3.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0015_admin_html_and_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0015_admin_html_and_time.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0016_checkboxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0016_checkboxes.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0017_remove_unused_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0017_remove_unused_models.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0018_remove_multilinetext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0018_remove_multilinetext.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0019_remove_choice_extra_info_placeholder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0019_remove_choice_extra_info_placeholder.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0020_choice_extra_info_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0020_choice_extra_info_text.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0021_choiceoption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0021_choiceoption.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0022_choiceoption_typo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0022_choiceoption_typo.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0023_formquest_text_tinymce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0023_formquest_text_tinymce.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0024_remove_formquestion_added.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0024_remove_formquestion_added.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0025_auto_20170915_0948.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0025_auto_20170915_0948.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0026_remove_page_infobox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0026_remove_page_infobox.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0027_textarea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0027_textarea.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0028_formquestion_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0028_formquestion_type.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0029_populate_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0029_populate_type.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0030_formquestion_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0030_formquestion_meta.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0031_formquestion_choices_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0031_formquestion_choices_default.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0032_move_question_dropdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0032_move_question_dropdown.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0033_add_temps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0033_add_temps.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0034a_move_choice_question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0034a_move_choice_question.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0034b_move_choice_question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0034b_move_choice_question.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0034c_move_choice_question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0034c_move_choice_question.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0034d_move_choice_question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0034d_move_choice_question.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0034e_move_choice_question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0034e_move_choice_question.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0035_auto_20171025_0014.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0035_auto_20171025_0014.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0036_checkbox_multiplechoice_radiobutton_singlelinetext_textarea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0036_checkbox_multiplechoice_radiobutton_singlelinetext_textarea.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0037_auto_20171028_0142.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0037_auto_20171028_0142.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0038_checkbox_radiobutton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0038_checkbox_radiobutton.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0039_dropdown_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0039_dropdown_proxy.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0040_populate_dropdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0040_populate_dropdown.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0041_remove_formquestion_is_dropdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0041_remove_formquestion_is_dropdown.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0042_auto_20171101_1410.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0042_auto_20171101_1410.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0043_multiplechoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0043_multiplechoice.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0044_auto_20171101_1412.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0044_auto_20171101_1412.py -------------------------------------------------------------------------------- /wizard_builder/migrations/0045_auto_20171122_1808.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/migrations/0045_auto_20171122_1808.py -------------------------------------------------------------------------------- /wizard_builder/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wizard_builder/mocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/mocks.py -------------------------------------------------------------------------------- /wizard_builder/model_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/model_helpers.py -------------------------------------------------------------------------------- /wizard_builder/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/models.py -------------------------------------------------------------------------------- /wizard_builder/templates/wizard_builder/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/templates/wizard_builder/base.html -------------------------------------------------------------------------------- /wizard_builder/templates/wizard_builder/input_extra_widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/templates/wizard_builder/input_extra_widget.html -------------------------------------------------------------------------------- /wizard_builder/templates/wizard_builder/input_option_extra.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/templates/wizard_builder/input_option_extra.html -------------------------------------------------------------------------------- /wizard_builder/templates/wizard_builder/review.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/templates/wizard_builder/review.html -------------------------------------------------------------------------------- /wizard_builder/templates/wizard_builder/review_content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/templates/wizard_builder/review_content.html -------------------------------------------------------------------------------- /wizard_builder/templates/wizard_builder/wizard_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/templates/wizard_builder/wizard_form.html -------------------------------------------------------------------------------- /wizard_builder/templates/wizard_builder/wizard_form_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/templates/wizard_builder/wizard_form_field.html -------------------------------------------------------------------------------- /wizard_builder/templates/wizard_builder/wizard_form_field_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/templates/wizard_builder/wizard_form_field_info.html -------------------------------------------------------------------------------- /wizard_builder/templates/wizard_builder/wizard_form_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/templates/wizard_builder/wizard_form_fields.html -------------------------------------------------------------------------------- /wizard_builder/templates/wizard_builder/wizard_form_include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/templates/wizard_builder/wizard_form_include.html -------------------------------------------------------------------------------- /wizard_builder/templatetags/wizard_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/templatetags/wizard_builder.py -------------------------------------------------------------------------------- /wizard_builder/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wizard_builder/tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/tests/base.py -------------------------------------------------------------------------------- /wizard_builder/tests/callisto_core_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/tests/callisto_core_settings.py -------------------------------------------------------------------------------- /wizard_builder/tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/tests/settings.py -------------------------------------------------------------------------------- /wizard_builder/tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/tests/test_admin.py -------------------------------------------------------------------------------- /wizard_builder/tests/test_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wizard_builder/tests/test_app/app_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/tests/test_app/app_settings.py -------------------------------------------------------------------------------- /wizard_builder/tests/test_app/dev_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/tests/test_app/dev_settings.py -------------------------------------------------------------------------------- /wizard_builder/tests/test_app/heroku_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/tests/test_app/heroku_settings.py -------------------------------------------------------------------------------- /wizard_builder/tests/test_app/live_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/tests/test_app/live_settings.py -------------------------------------------------------------------------------- /wizard_builder/tests/test_app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/tests/test_app/migrations/0001_initial.py -------------------------------------------------------------------------------- /wizard_builder/tests/test_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wizard_builder/tests/test_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/tests/test_app/models.py -------------------------------------------------------------------------------- /wizard_builder/tests/test_app/ops_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/tests/test_app/ops_settings.py -------------------------------------------------------------------------------- /wizard_builder/tests/test_app/static/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wizard_builder/tests/test_app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/tests/test_app/wsgi.py -------------------------------------------------------------------------------- /wizard_builder/tests/test_data_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/tests/test_data_helper.py -------------------------------------------------------------------------------- /wizard_builder/tests/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/tests/test_fields.py -------------------------------------------------------------------------------- /wizard_builder/tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/tests/test_forms.py -------------------------------------------------------------------------------- /wizard_builder/tests/test_frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/tests/test_frontend.py -------------------------------------------------------------------------------- /wizard_builder/tests/test_managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/tests/test_managers.py -------------------------------------------------------------------------------- /wizard_builder/tests/test_migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/tests/test_migrations.py -------------------------------------------------------------------------------- /wizard_builder/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/tests/test_models.py -------------------------------------------------------------------------------- /wizard_builder/tests/test_sites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/tests/test_sites.py -------------------------------------------------------------------------------- /wizard_builder/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/tests/test_views.py -------------------------------------------------------------------------------- /wizard_builder/tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/tests/urls.py -------------------------------------------------------------------------------- /wizard_builder/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/urls.py -------------------------------------------------------------------------------- /wizard_builder/version.txt: -------------------------------------------------------------------------------- 1 | 2.5.7 2 | -------------------------------------------------------------------------------- /wizard_builder/view_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/view_helpers.py -------------------------------------------------------------------------------- /wizard_builder/view_partials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/view_partials.py -------------------------------------------------------------------------------- /wizard_builder/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/views.py -------------------------------------------------------------------------------- /wizard_builder/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-callisto/django-wizard-builder/HEAD/wizard_builder/widgets.py --------------------------------------------------------------------------------