├── .gitignore ├── LICENCE ├── README.rst ├── __init__.py ├── doc ├── Makefile ├── conf.py ├── contents.rst ├── index.rst ├── make.bat ├── pdfindex.rst └── topics │ ├── admin-migration.rst │ ├── database-migration.rst │ ├── index.rst │ ├── model-migration.rst │ └── model.rst ├── epio.ini ├── manage.py ├── requirements.txt ├── responses ├── __init__.py └── models.py ├── settings ├── __init__.py └── default.py ├── surveymaker ├── __init__.py ├── admin.py ├── dynamic_models.py ├── fields.py ├── fixtures │ └── initial_data.json ├── models.py ├── signals.py ├── static │ └── css │ │ └── style.css ├── templates │ ├── base.html │ └── surveymaker │ │ ├── all.html │ │ └── survey_form.html ├── utils.py └── views.py └── urls.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/LICENCE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/README.rst -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/doc/contents.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/pdfindex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/doc/pdfindex.rst -------------------------------------------------------------------------------- /doc/topics/admin-migration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/doc/topics/admin-migration.rst -------------------------------------------------------------------------------- /doc/topics/database-migration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/doc/topics/database-migration.rst -------------------------------------------------------------------------------- /doc/topics/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/doc/topics/index.rst -------------------------------------------------------------------------------- /doc/topics/model-migration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/doc/topics/model-migration.rst -------------------------------------------------------------------------------- /doc/topics/model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/doc/topics/model.rst -------------------------------------------------------------------------------- /epio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/epio.ini -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/requirements.txt -------------------------------------------------------------------------------- /responses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /responses/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/responses/models.py -------------------------------------------------------------------------------- /settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/settings/__init__.py -------------------------------------------------------------------------------- /settings/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/settings/default.py -------------------------------------------------------------------------------- /surveymaker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /surveymaker/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/surveymaker/admin.py -------------------------------------------------------------------------------- /surveymaker/dynamic_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/surveymaker/dynamic_models.py -------------------------------------------------------------------------------- /surveymaker/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/surveymaker/fields.py -------------------------------------------------------------------------------- /surveymaker/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/surveymaker/fixtures/initial_data.json -------------------------------------------------------------------------------- /surveymaker/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/surveymaker/models.py -------------------------------------------------------------------------------- /surveymaker/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/surveymaker/signals.py -------------------------------------------------------------------------------- /surveymaker/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/surveymaker/static/css/style.css -------------------------------------------------------------------------------- /surveymaker/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/surveymaker/templates/base.html -------------------------------------------------------------------------------- /surveymaker/templates/surveymaker/all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/surveymaker/templates/surveymaker/all.html -------------------------------------------------------------------------------- /surveymaker/templates/surveymaker/survey_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/surveymaker/templates/surveymaker/survey_form.html -------------------------------------------------------------------------------- /surveymaker/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/surveymaker/utils.py -------------------------------------------------------------------------------- /surveymaker/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/surveymaker/views.py -------------------------------------------------------------------------------- /urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhardy/dynamic-models/HEAD/urls.py --------------------------------------------------------------------------------