gitextract_pk6qg8_a/ ├── LICENSE ├── README.md ├── requirements.txt └── src/ ├── db.sqlite3 ├── main/ │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py └── web/ ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations/ │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── recommendation.py ├── static/ │ └── web/ │ └── css/ │ └── base.css ├── templates/ │ └── web/ │ ├── base.html │ ├── detail.html │ ├── form_template.html │ ├── list.html │ ├── login.html │ ├── recommend.html │ └── signUp.html ├── tests.py ├── urls.py └── views.py