Feedback App for Django REST Framework with API Views.
DRF Feedback
is a Django App that can for collecting feedback from end user. It's view are based upon
Django REST Framework's GenericAPIView
and hence it contains a RESTful API views also.
- Civil Machines Technologies Private Limited: For providing platform and funds
for research work. This project is hosted currently with
CMT
only. - Himanshu Shankar: Ideation, modification & Quality Assurance in the app.
- Mahen Gandhi: Developed this app from scratch.
- Aditya Gupta: Testing, Modification suggestions & intial works. This app is inspire his work in live project of Hisab Kitab
- Download and Install via
pip
pip install drf_feedback
or
Download and Install via easy_install
easy_install drf_feedback
- Add
drf_feedback
inINSTALLED_APPS
INSTALLED_APPS = [
...
'drf_feedback',
...
]
- Include urls of
drf_feedback
inurls.py
urlpatterns = [
...
path('feedback/', include('drf_feedback.urls')),
...
]
# or
urlpatterns = [
...
url(r'feedback/', include('drf_feedback.urls')),
...
]
- Finally, run
migrate
command
python manage.py migrate drf_feedback