├── .gitignore ├── Pipfile ├── Pipfile.lock ├── README.md ├── apps ├── courses │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_course_seller.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py └── users │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── managers.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ ├── signals.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── fixtures ├── courses.json └── users.json ├── manage.py ├── my_project ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── static └── bulma.min.css └── templates ├── _base.html ├── courses ├── course_detail.html └── course_list.html ├── home.html ├── login.html └── nav.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/.gitignore -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/README.md -------------------------------------------------------------------------------- /apps/courses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/courses/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/apps/courses/admin.py -------------------------------------------------------------------------------- /apps/courses/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/apps/courses/apps.py -------------------------------------------------------------------------------- /apps/courses/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/apps/courses/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/courses/migrations/0002_course_seller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/apps/courses/migrations/0002_course_seller.py -------------------------------------------------------------------------------- /apps/courses/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/courses/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/apps/courses/models.py -------------------------------------------------------------------------------- /apps/courses/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/apps/courses/tests.py -------------------------------------------------------------------------------- /apps/courses/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/apps/courses/urls.py -------------------------------------------------------------------------------- /apps/courses/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/apps/courses/views.py -------------------------------------------------------------------------------- /apps/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/apps/users/admin.py -------------------------------------------------------------------------------- /apps/users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/apps/users/apps.py -------------------------------------------------------------------------------- /apps/users/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/apps/users/forms.py -------------------------------------------------------------------------------- /apps/users/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/apps/users/managers.py -------------------------------------------------------------------------------- /apps/users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/apps/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/apps/users/models.py -------------------------------------------------------------------------------- /apps/users/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/apps/users/signals.py -------------------------------------------------------------------------------- /apps/users/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/apps/users/tests.py -------------------------------------------------------------------------------- /apps/users/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/apps/users/urls.py -------------------------------------------------------------------------------- /apps/users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/apps/users/views.py -------------------------------------------------------------------------------- /fixtures/courses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/fixtures/courses.json -------------------------------------------------------------------------------- /fixtures/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/fixtures/users.json -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/manage.py -------------------------------------------------------------------------------- /my_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /my_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/my_project/settings.py -------------------------------------------------------------------------------- /my_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/my_project/urls.py -------------------------------------------------------------------------------- /my_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/my_project/wsgi.py -------------------------------------------------------------------------------- /static/bulma.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/static/bulma.min.css -------------------------------------------------------------------------------- /templates/_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/templates/_base.html -------------------------------------------------------------------------------- /templates/courses/course_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/templates/courses/course_detail.html -------------------------------------------------------------------------------- /templates/courses/course_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/templates/courses/course_list.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/django-stripe-connect/HEAD/templates/nav.html --------------------------------------------------------------------------------