gitextract_9q7rdef_/ ├── .deepsource.toml ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── dependabot.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml ├── form/ │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── index/ │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations/ │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20201128_2040.py │ │ ├── 0003_remove_form_see_response.py │ │ └── __init__.py │ ├── models.py │ ├── static/ │ │ └── index/ │ │ ├── HurlUI.css │ │ ├── form.js │ │ ├── index.js │ │ ├── response.js │ │ ├── responses.js │ │ ├── score.js │ │ ├── style.css │ │ └── viewform.js │ ├── templates/ │ │ ├── error/ │ │ │ ├── 403.html │ │ │ └── 404.html │ │ └── index/ │ │ ├── edit_response.html │ │ ├── form.html │ │ ├── form_response.html │ │ ├── index.html │ │ ├── layout.html │ │ ├── login.html │ │ ├── register.html │ │ ├── response.html │ │ ├── responses.html │ │ ├── score.html │ │ └── view_form.html │ ├── templatetags/ │ │ ├── count.py │ │ ├── generate_color.py │ │ ├── get_property.py │ │ ├── get_response.py │ │ ├── is_response.py │ │ ├── score.py │ │ └── to_int.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── manage.py ├── renovate.json └── requirements.txt