├── LICENSE ├── README.rst ├── model_helpers.py └── tests ├── .coverage ├── __init__.py ├── how_to_run.txt ├── simple_app ├── manage.py ├── sample │ ├── __init__.py │ └── models.py └── simple_app │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── test_cached_property.py ├── test_choices.py ├── test_key_value_field.py └── test_upload_to.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rewardz/django_model_helpers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rewardz/django_model_helpers/HEAD/README.rst -------------------------------------------------------------------------------- /model_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rewardz/django_model_helpers/HEAD/model_helpers.py -------------------------------------------------------------------------------- /tests/.coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rewardz/django_model_helpers/HEAD/tests/.coverage -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rewardz/django_model_helpers/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/how_to_run.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rewardz/django_model_helpers/HEAD/tests/how_to_run.txt -------------------------------------------------------------------------------- /tests/simple_app/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rewardz/django_model_helpers/HEAD/tests/simple_app/manage.py -------------------------------------------------------------------------------- /tests/simple_app/sample/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/simple_app/sample/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rewardz/django_model_helpers/HEAD/tests/simple_app/sample/models.py -------------------------------------------------------------------------------- /tests/simple_app/simple_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/simple_app/simple_app/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rewardz/django_model_helpers/HEAD/tests/simple_app/simple_app/settings.py -------------------------------------------------------------------------------- /tests/simple_app/simple_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rewardz/django_model_helpers/HEAD/tests/simple_app/simple_app/urls.py -------------------------------------------------------------------------------- /tests/simple_app/simple_app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rewardz/django_model_helpers/HEAD/tests/simple_app/simple_app/wsgi.py -------------------------------------------------------------------------------- /tests/test_cached_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rewardz/django_model_helpers/HEAD/tests/test_cached_property.py -------------------------------------------------------------------------------- /tests/test_choices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rewardz/django_model_helpers/HEAD/tests/test_choices.py -------------------------------------------------------------------------------- /tests/test_key_value_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rewardz/django_model_helpers/HEAD/tests/test_key_value_field.py -------------------------------------------------------------------------------- /tests/test_upload_to.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rewardz/django_model_helpers/HEAD/tests/test_upload_to.py --------------------------------------------------------------------------------