├── README.md ├── authy ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── admin.cpython-38.pyc │ ├── forms.cpython-38.pyc │ ├── models.cpython-38.pyc │ ├── urls.cpython-38.pyc │ └── views.cpython-38.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_bookmark.py │ ├── 0003_delete_bookmark.py │ ├── 0004_peoplelist.py │ ├── 0005_delete_peoplelist.py │ ├── 0006_peoplelist.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-38.pyc │ │ ├── 0002_bookmark.cpython-38.pyc │ │ ├── 0003_delete_bookmark.cpython-38.pyc │ │ ├── 0004_peoplelist.cpython-38.pyc │ │ ├── 0005_delete_peoplelist.cpython-38.pyc │ │ ├── 0006_peoplelist.cpython-38.pyc │ │ └── __init__.cpython-38.pyc ├── models.py ├── tests.py ├── urls.py └── views.py ├── comment ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── admin.cpython-38.pyc │ ├── forms.cpython-38.pyc │ └── models.cpython-38.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-38.pyc │ │ └── __init__.cpython-38.pyc ├── models.py ├── tests.py └── views.py ├── db.sqlite3 ├── direct ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── admin.cpython-38.pyc │ ├── models.cpython-38.pyc │ ├── urls.cpython-38.pyc │ └── views.cpython-38.pyc ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-38.pyc │ │ └── __init__.cpython-38.pyc ├── models.py ├── tests.py ├── urls.py └── views.py ├── fans_clone ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── settings.cpython-38.pyc │ ├── urls.cpython-38.pyc │ └── wsgi.cpython-38.pyc ├── asgi.py ├── settings.py ├── static │ ├── css │ │ ├── materialize.css │ │ ├── materialize.min.css │ │ └── style.css │ ├── img │ │ ├── no_avatar.jpg │ │ └── nobanner.jpg │ ├── js │ │ ├── init.js │ │ ├── loadmore.js │ │ ├── materialize.js │ │ └── materialize.min.js │ └── screenshots │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png ├── templates │ ├── base.html │ ├── bookmark_list.html │ ├── direct │ │ ├── can_message_list.html │ │ ├── direct.html │ │ ├── inbox.html │ │ └── search_user.html │ ├── fans_list.html │ ├── following_list.html │ ├── index.html │ ├── new_list_modal.html │ ├── newpost.html │ ├── newtier.html │ ├── notifications.html │ ├── people_list.html │ ├── post_detail.html │ ├── profile.html │ ├── registration │ │ ├── change_password.html │ │ ├── change_password_done.html │ │ ├── edit_profile.html │ │ ├── login.html │ │ ├── password_reset_complete.html │ │ ├── password_reset_confirm.html │ │ ├── password_reset_done.html │ │ ├── password_reset_email.html │ │ ├── password_reset_form.html │ │ ├── password_reset_subject.txt │ │ └── signup.html │ └── user_lists.html ├── urls.py └── wsgi.py ├── manage.py ├── media ├── user_1 │ ├── B_A_N_G.mp4 │ ├── banner.jpg │ ├── japan.jpg │ ├── korea.jpg │ ├── mexico.jpg │ ├── mumbai.jpg │ └── profile.jpg ├── user_10 │ └── profile.jpg ├── user_11 │ └── profile.jpg ├── user_12 │ └── profile.jpg ├── user_13 │ ├── banner.jpg │ └── profile.jpg ├── user_2 │ └── profile.jpg ├── user_3 │ ├── B_A_N_G.mp4 │ ├── K-KANSEI_DORIFTO.mp4 │ ├── banner.jpg │ ├── carrera.jpg │ ├── china.jpg │ ├── dominican.jpg │ ├── germany.jpg │ ├── peru.jpg │ ├── profile.jpg │ ├── sti.jpg │ └── wataten_loli_bang_meme.mp4 ├── user_4 │ ├── newyork.jpg │ ├── profile.jpg │ └── utah.jpg ├── user_5 │ ├── mexico.jpg │ └── profile.jpg ├── user_6 │ └── profile.jpg ├── user_7 │ └── profile.jpg ├── user_8 │ └── profile.jpg └── user_9 │ └── profile.jpg ├── notifications ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── admin.cpython-38.pyc │ ├── models.cpython-38.pyc │ ├── urls.cpython-38.pyc │ └── views.cpython-38.pyc ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-38.pyc │ │ └── __init__.cpython-38.pyc ├── models.py ├── tests.py ├── urls.py └── views.py ├── post ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── admin.cpython-38.pyc │ ├── forms.cpython-38.pyc │ ├── models.cpython-38.pyc │ ├── urls.cpython-38.pyc │ └── views.cpython-38.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_bookmark.py │ ├── 0003_delete_bookmark.py │ ├── 0004_bookmark.py │ ├── 0005_auto_20210128_0448.py │ ├── 0006_delete_bookmark.py │ ├── 0007_bookmark.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-38.pyc │ │ ├── 0002_bookmark.cpython-38.pyc │ │ ├── 0003_delete_bookmark.cpython-38.pyc │ │ ├── 0004_bookmark.cpython-38.pyc │ │ ├── 0005_auto_20210128_0448.cpython-38.pyc │ │ ├── 0006_delete_bookmark.cpython-38.pyc │ │ ├── 0007_bookmark.cpython-38.pyc │ │ └── __init__.cpython-38.pyc ├── models.py ├── tests.py ├── urls.py └── views.py ├── requirements.txt └── tier ├── __init__.py ├── __pycache__ ├── __init__.cpython-38.pyc ├── admin.cpython-38.pyc ├── forms.cpython-38.pyc ├── models.cpython-38.pyc ├── urls.cpython-38.pyc └── views.cpython-38.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations ├── 0001_initial.py ├── __init__.py └── __pycache__ │ ├── 0001_initial.cpython-38.pyc │ └── __init__.cpython-38.pyc ├── models.py ├── tests.py ├── urls.py └── views.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/README.md -------------------------------------------------------------------------------- /authy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /authy/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/authy/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /authy/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/authy/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /authy/__pycache__/forms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/authy/__pycache__/forms.cpython-38.pyc -------------------------------------------------------------------------------- /authy/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/authy/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /authy/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/authy/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /authy/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/authy/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /authy/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/authy/admin.py -------------------------------------------------------------------------------- /authy/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/authy/apps.py -------------------------------------------------------------------------------- /authy/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/authy/forms.py -------------------------------------------------------------------------------- /authy/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/authy/migrations/0001_initial.py -------------------------------------------------------------------------------- /authy/migrations/0002_bookmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/authy/migrations/0002_bookmark.py -------------------------------------------------------------------------------- /authy/migrations/0003_delete_bookmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/authy/migrations/0003_delete_bookmark.py -------------------------------------------------------------------------------- /authy/migrations/0004_peoplelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/authy/migrations/0004_peoplelist.py -------------------------------------------------------------------------------- /authy/migrations/0005_delete_peoplelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/authy/migrations/0005_delete_peoplelist.py -------------------------------------------------------------------------------- /authy/migrations/0006_peoplelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/authy/migrations/0006_peoplelist.py -------------------------------------------------------------------------------- /authy/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /authy/migrations/__pycache__/0001_initial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/authy/migrations/__pycache__/0001_initial.cpython-38.pyc -------------------------------------------------------------------------------- /authy/migrations/__pycache__/0002_bookmark.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/authy/migrations/__pycache__/0002_bookmark.cpython-38.pyc -------------------------------------------------------------------------------- /authy/migrations/__pycache__/0003_delete_bookmark.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/authy/migrations/__pycache__/0003_delete_bookmark.cpython-38.pyc -------------------------------------------------------------------------------- /authy/migrations/__pycache__/0004_peoplelist.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/authy/migrations/__pycache__/0004_peoplelist.cpython-38.pyc -------------------------------------------------------------------------------- /authy/migrations/__pycache__/0005_delete_peoplelist.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/authy/migrations/__pycache__/0005_delete_peoplelist.cpython-38.pyc -------------------------------------------------------------------------------- /authy/migrations/__pycache__/0006_peoplelist.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/authy/migrations/__pycache__/0006_peoplelist.cpython-38.pyc -------------------------------------------------------------------------------- /authy/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/authy/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /authy/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/authy/models.py -------------------------------------------------------------------------------- /authy/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/authy/tests.py -------------------------------------------------------------------------------- /authy/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/authy/urls.py -------------------------------------------------------------------------------- /authy/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/authy/views.py -------------------------------------------------------------------------------- /comment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comment/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/comment/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /comment/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/comment/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /comment/__pycache__/forms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/comment/__pycache__/forms.cpython-38.pyc -------------------------------------------------------------------------------- /comment/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/comment/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /comment/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/comment/admin.py -------------------------------------------------------------------------------- /comment/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/comment/apps.py -------------------------------------------------------------------------------- /comment/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/comment/forms.py -------------------------------------------------------------------------------- /comment/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/comment/migrations/0001_initial.py -------------------------------------------------------------------------------- /comment/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comment/migrations/__pycache__/0001_initial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/comment/migrations/__pycache__/0001_initial.cpython-38.pyc -------------------------------------------------------------------------------- /comment/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/comment/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /comment/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/comment/models.py -------------------------------------------------------------------------------- /comment/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/comment/tests.py -------------------------------------------------------------------------------- /comment/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /direct/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /direct/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/direct/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /direct/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/direct/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /direct/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/direct/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /direct/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/direct/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /direct/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/direct/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /direct/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/direct/admin.py -------------------------------------------------------------------------------- /direct/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/direct/apps.py -------------------------------------------------------------------------------- /direct/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/direct/migrations/0001_initial.py -------------------------------------------------------------------------------- /direct/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /direct/migrations/__pycache__/0001_initial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/direct/migrations/__pycache__/0001_initial.cpython-38.pyc -------------------------------------------------------------------------------- /direct/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/direct/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /direct/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/direct/models.py -------------------------------------------------------------------------------- /direct/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/direct/tests.py -------------------------------------------------------------------------------- /direct/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/direct/urls.py -------------------------------------------------------------------------------- /direct/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/direct/views.py -------------------------------------------------------------------------------- /fans_clone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fans_clone/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /fans_clone/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /fans_clone/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /fans_clone/__pycache__/wsgi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/__pycache__/wsgi.cpython-38.pyc -------------------------------------------------------------------------------- /fans_clone/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/asgi.py -------------------------------------------------------------------------------- /fans_clone/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/settings.py -------------------------------------------------------------------------------- /fans_clone/static/css/materialize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/static/css/materialize.css -------------------------------------------------------------------------------- /fans_clone/static/css/materialize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/static/css/materialize.min.css -------------------------------------------------------------------------------- /fans_clone/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/static/css/style.css -------------------------------------------------------------------------------- /fans_clone/static/img/no_avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/static/img/no_avatar.jpg -------------------------------------------------------------------------------- /fans_clone/static/img/nobanner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/static/img/nobanner.jpg -------------------------------------------------------------------------------- /fans_clone/static/js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/static/js/init.js -------------------------------------------------------------------------------- /fans_clone/static/js/loadmore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/static/js/loadmore.js -------------------------------------------------------------------------------- /fans_clone/static/js/materialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/static/js/materialize.js -------------------------------------------------------------------------------- /fans_clone/static/js/materialize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/static/js/materialize.min.js -------------------------------------------------------------------------------- /fans_clone/static/screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/static/screenshots/1.png -------------------------------------------------------------------------------- /fans_clone/static/screenshots/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/static/screenshots/10.png -------------------------------------------------------------------------------- /fans_clone/static/screenshots/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/static/screenshots/11.png -------------------------------------------------------------------------------- /fans_clone/static/screenshots/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/static/screenshots/12.png -------------------------------------------------------------------------------- /fans_clone/static/screenshots/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/static/screenshots/13.png -------------------------------------------------------------------------------- /fans_clone/static/screenshots/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/static/screenshots/14.png -------------------------------------------------------------------------------- /fans_clone/static/screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/static/screenshots/2.png -------------------------------------------------------------------------------- /fans_clone/static/screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/static/screenshots/3.png -------------------------------------------------------------------------------- /fans_clone/static/screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/static/screenshots/4.png -------------------------------------------------------------------------------- /fans_clone/static/screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/static/screenshots/5.png -------------------------------------------------------------------------------- /fans_clone/static/screenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/static/screenshots/6.png -------------------------------------------------------------------------------- /fans_clone/static/screenshots/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/static/screenshots/7.png -------------------------------------------------------------------------------- /fans_clone/static/screenshots/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/static/screenshots/8.png -------------------------------------------------------------------------------- /fans_clone/static/screenshots/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/static/screenshots/9.png -------------------------------------------------------------------------------- /fans_clone/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/templates/base.html -------------------------------------------------------------------------------- /fans_clone/templates/bookmark_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/templates/bookmark_list.html -------------------------------------------------------------------------------- /fans_clone/templates/direct/can_message_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/templates/direct/can_message_list.html -------------------------------------------------------------------------------- /fans_clone/templates/direct/direct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/templates/direct/direct.html -------------------------------------------------------------------------------- /fans_clone/templates/direct/inbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/templates/direct/inbox.html -------------------------------------------------------------------------------- /fans_clone/templates/direct/search_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/templates/direct/search_user.html -------------------------------------------------------------------------------- /fans_clone/templates/fans_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/templates/fans_list.html -------------------------------------------------------------------------------- /fans_clone/templates/following_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/templates/following_list.html -------------------------------------------------------------------------------- /fans_clone/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/templates/index.html -------------------------------------------------------------------------------- /fans_clone/templates/new_list_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/templates/new_list_modal.html -------------------------------------------------------------------------------- /fans_clone/templates/newpost.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/templates/newpost.html -------------------------------------------------------------------------------- /fans_clone/templates/newtier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/templates/newtier.html -------------------------------------------------------------------------------- /fans_clone/templates/notifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/templates/notifications.html -------------------------------------------------------------------------------- /fans_clone/templates/people_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/templates/people_list.html -------------------------------------------------------------------------------- /fans_clone/templates/post_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/templates/post_detail.html -------------------------------------------------------------------------------- /fans_clone/templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/templates/profile.html -------------------------------------------------------------------------------- /fans_clone/templates/registration/change_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/templates/registration/change_password.html -------------------------------------------------------------------------------- /fans_clone/templates/registration/change_password_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/templates/registration/change_password_done.html -------------------------------------------------------------------------------- /fans_clone/templates/registration/edit_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/templates/registration/edit_profile.html -------------------------------------------------------------------------------- /fans_clone/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/templates/registration/login.html -------------------------------------------------------------------------------- /fans_clone/templates/registration/password_reset_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/templates/registration/password_reset_complete.html -------------------------------------------------------------------------------- /fans_clone/templates/registration/password_reset_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/templates/registration/password_reset_confirm.html -------------------------------------------------------------------------------- /fans_clone/templates/registration/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/templates/registration/password_reset_done.html -------------------------------------------------------------------------------- /fans_clone/templates/registration/password_reset_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/templates/registration/password_reset_email.html -------------------------------------------------------------------------------- /fans_clone/templates/registration/password_reset_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/templates/registration/password_reset_form.html -------------------------------------------------------------------------------- /fans_clone/templates/registration/password_reset_subject.txt: -------------------------------------------------------------------------------- 1 | Password reset for yourwebsite -------------------------------------------------------------------------------- /fans_clone/templates/registration/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/templates/registration/signup.html -------------------------------------------------------------------------------- /fans_clone/templates/user_lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/templates/user_lists.html -------------------------------------------------------------------------------- /fans_clone/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/urls.py -------------------------------------------------------------------------------- /fans_clone/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/fans_clone/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/manage.py -------------------------------------------------------------------------------- /media/user_1/B_A_N_G.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_1/B_A_N_G.mp4 -------------------------------------------------------------------------------- /media/user_1/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_1/banner.jpg -------------------------------------------------------------------------------- /media/user_1/japan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_1/japan.jpg -------------------------------------------------------------------------------- /media/user_1/korea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_1/korea.jpg -------------------------------------------------------------------------------- /media/user_1/mexico.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_1/mexico.jpg -------------------------------------------------------------------------------- /media/user_1/mumbai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_1/mumbai.jpg -------------------------------------------------------------------------------- /media/user_1/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_1/profile.jpg -------------------------------------------------------------------------------- /media/user_10/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_10/profile.jpg -------------------------------------------------------------------------------- /media/user_11/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_11/profile.jpg -------------------------------------------------------------------------------- /media/user_12/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_12/profile.jpg -------------------------------------------------------------------------------- /media/user_13/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_13/banner.jpg -------------------------------------------------------------------------------- /media/user_13/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_13/profile.jpg -------------------------------------------------------------------------------- /media/user_2/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_2/profile.jpg -------------------------------------------------------------------------------- /media/user_3/B_A_N_G.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_3/B_A_N_G.mp4 -------------------------------------------------------------------------------- /media/user_3/K-KANSEI_DORIFTO.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_3/K-KANSEI_DORIFTO.mp4 -------------------------------------------------------------------------------- /media/user_3/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_3/banner.jpg -------------------------------------------------------------------------------- /media/user_3/carrera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_3/carrera.jpg -------------------------------------------------------------------------------- /media/user_3/china.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_3/china.jpg -------------------------------------------------------------------------------- /media/user_3/dominican.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_3/dominican.jpg -------------------------------------------------------------------------------- /media/user_3/germany.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_3/germany.jpg -------------------------------------------------------------------------------- /media/user_3/peru.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_3/peru.jpg -------------------------------------------------------------------------------- /media/user_3/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_3/profile.jpg -------------------------------------------------------------------------------- /media/user_3/sti.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_3/sti.jpg -------------------------------------------------------------------------------- /media/user_3/wataten_loli_bang_meme.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_3/wataten_loli_bang_meme.mp4 -------------------------------------------------------------------------------- /media/user_4/newyork.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_4/newyork.jpg -------------------------------------------------------------------------------- /media/user_4/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_4/profile.jpg -------------------------------------------------------------------------------- /media/user_4/utah.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_4/utah.jpg -------------------------------------------------------------------------------- /media/user_5/mexico.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_5/mexico.jpg -------------------------------------------------------------------------------- /media/user_5/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_5/profile.jpg -------------------------------------------------------------------------------- /media/user_6/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_6/profile.jpg -------------------------------------------------------------------------------- /media/user_7/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_7/profile.jpg -------------------------------------------------------------------------------- /media/user_8/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_8/profile.jpg -------------------------------------------------------------------------------- /media/user_9/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/media/user_9/profile.jpg -------------------------------------------------------------------------------- /notifications/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notifications/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/notifications/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /notifications/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/notifications/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /notifications/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/notifications/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /notifications/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/notifications/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /notifications/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/notifications/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /notifications/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/notifications/admin.py -------------------------------------------------------------------------------- /notifications/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/notifications/apps.py -------------------------------------------------------------------------------- /notifications/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/notifications/migrations/0001_initial.py -------------------------------------------------------------------------------- /notifications/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notifications/migrations/__pycache__/0001_initial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/notifications/migrations/__pycache__/0001_initial.cpython-38.pyc -------------------------------------------------------------------------------- /notifications/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/notifications/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /notifications/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/notifications/models.py -------------------------------------------------------------------------------- /notifications/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/notifications/tests.py -------------------------------------------------------------------------------- /notifications/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/notifications/urls.py -------------------------------------------------------------------------------- /notifications/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/notifications/views.py -------------------------------------------------------------------------------- /post/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /post/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/post/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /post/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/post/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /post/__pycache__/forms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/post/__pycache__/forms.cpython-38.pyc -------------------------------------------------------------------------------- /post/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/post/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /post/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/post/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /post/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/post/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /post/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/post/admin.py -------------------------------------------------------------------------------- /post/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/post/apps.py -------------------------------------------------------------------------------- /post/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/post/forms.py -------------------------------------------------------------------------------- /post/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/post/migrations/0001_initial.py -------------------------------------------------------------------------------- /post/migrations/0002_bookmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/post/migrations/0002_bookmark.py -------------------------------------------------------------------------------- /post/migrations/0003_delete_bookmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/post/migrations/0003_delete_bookmark.py -------------------------------------------------------------------------------- /post/migrations/0004_bookmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/post/migrations/0004_bookmark.py -------------------------------------------------------------------------------- /post/migrations/0005_auto_20210128_0448.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/post/migrations/0005_auto_20210128_0448.py -------------------------------------------------------------------------------- /post/migrations/0006_delete_bookmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/post/migrations/0006_delete_bookmark.py -------------------------------------------------------------------------------- /post/migrations/0007_bookmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/post/migrations/0007_bookmark.py -------------------------------------------------------------------------------- /post/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /post/migrations/__pycache__/0001_initial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/post/migrations/__pycache__/0001_initial.cpython-38.pyc -------------------------------------------------------------------------------- /post/migrations/__pycache__/0002_bookmark.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/post/migrations/__pycache__/0002_bookmark.cpython-38.pyc -------------------------------------------------------------------------------- /post/migrations/__pycache__/0003_delete_bookmark.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/post/migrations/__pycache__/0003_delete_bookmark.cpython-38.pyc -------------------------------------------------------------------------------- /post/migrations/__pycache__/0004_bookmark.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/post/migrations/__pycache__/0004_bookmark.cpython-38.pyc -------------------------------------------------------------------------------- /post/migrations/__pycache__/0005_auto_20210128_0448.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/post/migrations/__pycache__/0005_auto_20210128_0448.cpython-38.pyc -------------------------------------------------------------------------------- /post/migrations/__pycache__/0006_delete_bookmark.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/post/migrations/__pycache__/0006_delete_bookmark.cpython-38.pyc -------------------------------------------------------------------------------- /post/migrations/__pycache__/0007_bookmark.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/post/migrations/__pycache__/0007_bookmark.cpython-38.pyc -------------------------------------------------------------------------------- /post/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/post/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /post/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/post/models.py -------------------------------------------------------------------------------- /post/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/post/tests.py -------------------------------------------------------------------------------- /post/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/post/urls.py -------------------------------------------------------------------------------- /post/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/post/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/requirements.txt -------------------------------------------------------------------------------- /tier/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tier/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/tier/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /tier/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/tier/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /tier/__pycache__/forms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/tier/__pycache__/forms.cpython-38.pyc -------------------------------------------------------------------------------- /tier/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/tier/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /tier/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/tier/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /tier/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/tier/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /tier/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/tier/admin.py -------------------------------------------------------------------------------- /tier/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/tier/apps.py -------------------------------------------------------------------------------- /tier/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/tier/forms.py -------------------------------------------------------------------------------- /tier/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/tier/migrations/0001_initial.py -------------------------------------------------------------------------------- /tier/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tier/migrations/__pycache__/0001_initial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/tier/migrations/__pycache__/0001_initial.cpython-38.pyc -------------------------------------------------------------------------------- /tier/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/tier/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /tier/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/tier/models.py -------------------------------------------------------------------------------- /tier/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/tier/tests.py -------------------------------------------------------------------------------- /tier/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/tier/urls.py -------------------------------------------------------------------------------- /tier/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byronlara5/django_onlyfans_clone_youtube/HEAD/tier/views.py --------------------------------------------------------------------------------