gitextract_s4e40pa7/ ├── .gitignore ├── README.md └── movieweb/ ├── db.sqlite3 ├── manage.py ├── movieweb/ │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── videoplay/ ├── __init__.py ├── admin.py ├── forms.py ├── migrations/ │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── serializers.py ├── static/ │ ├── home_page.css │ ├── user_login.css │ ├── user_regist.css │ ├── video_play.css │ └── video_play.js ├── templates/ │ ├── index.html │ ├── user_login.html │ ├── user_regist.html │ └── video.html ├── tests.py └── views.py