├── db.sqlite3 ├── events ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── admin.cpython-39.pyc │ ├── forms.cpython-39.pyc │ ├── models.cpython-39.pyc │ ├── urls.cpython-39.pyc │ └── views.cpython-39.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20210224_0818.py │ ├── 0003_auto_20210224_0827.py │ ├── 0004_venue_owner.py │ ├── 0005_venue_venue_image.py │ ├── 0006_event_approved.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-39.pyc │ │ ├── 0002_auto_20210224_0818.cpython-39.pyc │ │ ├── 0003_auto_20210224_0827.cpython-39.pyc │ │ ├── 0004_venue_owner.cpython-39.pyc │ │ ├── 0005_venue_venue_image.cpython-39.pyc │ │ ├── 0006_event_approved.cpython-39.pyc │ │ └── __init__.cpython-39.pyc ├── models.py ├── templates │ └── events │ │ ├── add_event.html │ │ ├── add_venue.html │ │ ├── admin_approval.html │ │ ├── base.html │ │ ├── event_list.html │ │ ├── home.html │ │ ├── my_events.html │ │ ├── navbar.html │ │ ├── search_events.html │ │ ├── search_venues.html │ │ ├── show_event.html │ │ ├── show_venue.html │ │ ├── update_event.html │ │ ├── update_venue.html │ │ ├── venue.html │ │ └── venue_events.html ├── tests.py ├── urls.py └── views.py ├── manage.py ├── media └── images │ ├── IMG_1378.JPG │ ├── pool.jpg │ ├── pool_NTp8x4L.jpg │ ├── pool_ZoyaMXE.jpg │ ├── pool_cBv2YSo.jpg │ └── pool_oDhbtFd.jpg ├── members ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── admin.cpython-39.pyc │ ├── forms.cpython-39.pyc │ ├── models.cpython-39.pyc │ ├── urls.cpython-39.pyc │ └── views.cpython-39.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-39.pyc ├── models.py ├── templates │ └── authenticate │ │ ├── login.html │ │ └── register_user.html ├── tests.py ├── urls.py └── views.py └── myclub_website ├── __init__.py ├── __pycache__ ├── __init__.cpython-39.pyc ├── settings.cpython-39.pyc ├── urls.cpython-39.pyc └── wsgi.cpython-39.pyc ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /events/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /events/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /events/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /events/__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /events/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /events/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /events/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /events/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/admin.py -------------------------------------------------------------------------------- /events/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/apps.py -------------------------------------------------------------------------------- /events/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/forms.py -------------------------------------------------------------------------------- /events/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/migrations/0001_initial.py -------------------------------------------------------------------------------- /events/migrations/0002_auto_20210224_0818.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/migrations/0002_auto_20210224_0818.py -------------------------------------------------------------------------------- /events/migrations/0003_auto_20210224_0827.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/migrations/0003_auto_20210224_0827.py -------------------------------------------------------------------------------- /events/migrations/0004_venue_owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/migrations/0004_venue_owner.py -------------------------------------------------------------------------------- /events/migrations/0005_venue_venue_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/migrations/0005_venue_venue_image.py -------------------------------------------------------------------------------- /events/migrations/0006_event_approved.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/migrations/0006_event_approved.py -------------------------------------------------------------------------------- /events/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /events/migrations/__pycache__/0001_initial.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/migrations/__pycache__/0001_initial.cpython-39.pyc -------------------------------------------------------------------------------- /events/migrations/__pycache__/0002_auto_20210224_0818.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/migrations/__pycache__/0002_auto_20210224_0818.cpython-39.pyc -------------------------------------------------------------------------------- /events/migrations/__pycache__/0003_auto_20210224_0827.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/migrations/__pycache__/0003_auto_20210224_0827.cpython-39.pyc -------------------------------------------------------------------------------- /events/migrations/__pycache__/0004_venue_owner.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/migrations/__pycache__/0004_venue_owner.cpython-39.pyc -------------------------------------------------------------------------------- /events/migrations/__pycache__/0005_venue_venue_image.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/migrations/__pycache__/0005_venue_venue_image.cpython-39.pyc -------------------------------------------------------------------------------- /events/migrations/__pycache__/0006_event_approved.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/migrations/__pycache__/0006_event_approved.cpython-39.pyc -------------------------------------------------------------------------------- /events/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /events/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/models.py -------------------------------------------------------------------------------- /events/templates/events/add_event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/templates/events/add_event.html -------------------------------------------------------------------------------- /events/templates/events/add_venue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/templates/events/add_venue.html -------------------------------------------------------------------------------- /events/templates/events/admin_approval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/templates/events/admin_approval.html -------------------------------------------------------------------------------- /events/templates/events/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/templates/events/base.html -------------------------------------------------------------------------------- /events/templates/events/event_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/templates/events/event_list.html -------------------------------------------------------------------------------- /events/templates/events/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/templates/events/home.html -------------------------------------------------------------------------------- /events/templates/events/my_events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/templates/events/my_events.html -------------------------------------------------------------------------------- /events/templates/events/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/templates/events/navbar.html -------------------------------------------------------------------------------- /events/templates/events/search_events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/templates/events/search_events.html -------------------------------------------------------------------------------- /events/templates/events/search_venues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/templates/events/search_venues.html -------------------------------------------------------------------------------- /events/templates/events/show_event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/templates/events/show_event.html -------------------------------------------------------------------------------- /events/templates/events/show_venue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/templates/events/show_venue.html -------------------------------------------------------------------------------- /events/templates/events/update_event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/templates/events/update_event.html -------------------------------------------------------------------------------- /events/templates/events/update_venue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/templates/events/update_venue.html -------------------------------------------------------------------------------- /events/templates/events/venue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/templates/events/venue.html -------------------------------------------------------------------------------- /events/templates/events/venue_events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/templates/events/venue_events.html -------------------------------------------------------------------------------- /events/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/tests.py -------------------------------------------------------------------------------- /events/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/urls.py -------------------------------------------------------------------------------- /events/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/events/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/manage.py -------------------------------------------------------------------------------- /media/images/IMG_1378.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/media/images/IMG_1378.JPG -------------------------------------------------------------------------------- /media/images/pool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/media/images/pool.jpg -------------------------------------------------------------------------------- /media/images/pool_NTp8x4L.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/media/images/pool_NTp8x4L.jpg -------------------------------------------------------------------------------- /media/images/pool_ZoyaMXE.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/media/images/pool_ZoyaMXE.jpg -------------------------------------------------------------------------------- /media/images/pool_cBv2YSo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/media/images/pool_cBv2YSo.jpg -------------------------------------------------------------------------------- /media/images/pool_oDhbtFd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/media/images/pool_oDhbtFd.jpg -------------------------------------------------------------------------------- /members/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /members/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/members/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /members/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/members/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /members/__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/members/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /members/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/members/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /members/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/members/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /members/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/members/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /members/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/members/admin.py -------------------------------------------------------------------------------- /members/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/members/apps.py -------------------------------------------------------------------------------- /members/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/members/forms.py -------------------------------------------------------------------------------- /members/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /members/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/members/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /members/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/members/models.py -------------------------------------------------------------------------------- /members/templates/authenticate/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/members/templates/authenticate/login.html -------------------------------------------------------------------------------- /members/templates/authenticate/register_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/members/templates/authenticate/register_user.html -------------------------------------------------------------------------------- /members/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/members/tests.py -------------------------------------------------------------------------------- /members/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/members/urls.py -------------------------------------------------------------------------------- /members/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/members/views.py -------------------------------------------------------------------------------- /myclub_website/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myclub_website/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/myclub_website/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /myclub_website/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/myclub_website/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /myclub_website/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/myclub_website/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /myclub_website/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/myclub_website/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /myclub_website/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/myclub_website/asgi.py -------------------------------------------------------------------------------- /myclub_website/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/myclub_website/settings.py -------------------------------------------------------------------------------- /myclub_website/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/myclub_website/urls.py -------------------------------------------------------------------------------- /myclub_website/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/Django-Club-Youtube-Playlist/HEAD/myclub_website/wsgi.py --------------------------------------------------------------------------------