├── .gitignore ├── LICENSE.txt ├── README.md ├── automatic_crud ├── __init__.py ├── base_report.py ├── data_types.py ├── generics.py ├── models.py ├── register.py ├── response_messages.py ├── urls.py ├── utils.py ├── views_crud.py └── views_crud_ajax.py ├── docs ├── .readthedocs.yaml ├── about.md ├── about.rst ├── ajax-cruds.md ├── ajax-cruds.rst ├── base-model.md ├── base-model.rst ├── data-types.md ├── data-types.rst ├── excel-report.md ├── excel-report.rst ├── extra-functions.md ├── extra-functions.rst ├── index.md ├── index.rst ├── introduction.rst ├── mkdocs.yml ├── normal-cruds.md ├── normal-cruds.rst ├── register-models.md ├── register-models.rst └── requirements.txt ├── requirements.txt ├── setup.py └── test_app ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── models.py ├── templates └── test_app │ ├── category_create.html │ ├── category_detail.html │ ├── category_list.html │ └── category_update.html └── urls.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/README.md -------------------------------------------------------------------------------- /automatic_crud/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automatic_crud/base_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/automatic_crud/base_report.py -------------------------------------------------------------------------------- /automatic_crud/data_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/automatic_crud/data_types.py -------------------------------------------------------------------------------- /automatic_crud/generics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/automatic_crud/generics.py -------------------------------------------------------------------------------- /automatic_crud/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/automatic_crud/models.py -------------------------------------------------------------------------------- /automatic_crud/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/automatic_crud/register.py -------------------------------------------------------------------------------- /automatic_crud/response_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/automatic_crud/response_messages.py -------------------------------------------------------------------------------- /automatic_crud/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/automatic_crud/urls.py -------------------------------------------------------------------------------- /automatic_crud/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/automatic_crud/utils.py -------------------------------------------------------------------------------- /automatic_crud/views_crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/automatic_crud/views_crud.py -------------------------------------------------------------------------------- /automatic_crud/views_crud_ajax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/automatic_crud/views_crud_ajax.py -------------------------------------------------------------------------------- /docs/.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/docs/.readthedocs.yaml -------------------------------------------------------------------------------- /docs/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/docs/about.md -------------------------------------------------------------------------------- /docs/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/docs/about.rst -------------------------------------------------------------------------------- /docs/ajax-cruds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/docs/ajax-cruds.md -------------------------------------------------------------------------------- /docs/ajax-cruds.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/docs/ajax-cruds.rst -------------------------------------------------------------------------------- /docs/base-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/docs/base-model.md -------------------------------------------------------------------------------- /docs/base-model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/docs/base-model.rst -------------------------------------------------------------------------------- /docs/data-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/docs/data-types.md -------------------------------------------------------------------------------- /docs/data-types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/docs/data-types.rst -------------------------------------------------------------------------------- /docs/excel-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/docs/excel-report.md -------------------------------------------------------------------------------- /docs/excel-report.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/docs/excel-report.rst -------------------------------------------------------------------------------- /docs/extra-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/docs/extra-functions.md -------------------------------------------------------------------------------- /docs/extra-functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/docs/extra-functions.rst -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/docs/introduction.rst -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/docs/mkdocs.yml -------------------------------------------------------------------------------- /docs/normal-cruds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/docs/normal-cruds.md -------------------------------------------------------------------------------- /docs/normal-cruds.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/docs/normal-cruds.rst -------------------------------------------------------------------------------- /docs/register-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/docs/register-models.md -------------------------------------------------------------------------------- /docs/register-models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/docs/register-models.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/setup.py -------------------------------------------------------------------------------- /test_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/test_app/admin.py -------------------------------------------------------------------------------- /test_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/test_app/apps.py -------------------------------------------------------------------------------- /test_app/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/test_app/forms.py -------------------------------------------------------------------------------- /test_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/test_app/models.py -------------------------------------------------------------------------------- /test_app/templates/test_app/category_create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/test_app/templates/test_app/category_create.html -------------------------------------------------------------------------------- /test_app/templates/test_app/category_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/test_app/templates/test_app/category_detail.html -------------------------------------------------------------------------------- /test_app/templates/test_app/category_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/test_app/templates/test_app/category_list.html -------------------------------------------------------------------------------- /test_app/templates/test_app/category_update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/test_app/templates/test_app/category_update.html -------------------------------------------------------------------------------- /test_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerpe/django-automatic-crud/HEAD/test_app/urls.py --------------------------------------------------------------------------------