├── .gitignore ├── LICENSE ├── README.md ├── apps ├── __init__.py ├── certificates │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20200621_1534.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── lectures │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── oauth │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── projects │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20200628_1518.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── submissions │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20200906_1610.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── users │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── decorators.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20200920_1548.py │ │ ├── 0003_auto_20200920_1645.py │ │ └── __init__.py │ ├── models.py │ ├── permissions.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── utils │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── validators.py │ └── views.py ├── volunteers │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20200920_1548.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py └── waitlist │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20200614_1811.py │ ├── 0003_waitlistentry_level.py │ ├── 0004_auto_20200621_1534.py │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── config ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/README.md -------------------------------------------------------------------------------- /apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/certificates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/certificates/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/certificates/admin.py -------------------------------------------------------------------------------- /apps/certificates/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/certificates/apps.py -------------------------------------------------------------------------------- /apps/certificates/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/certificates/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/certificates/migrations/0002_auto_20200621_1534.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/certificates/migrations/0002_auto_20200621_1534.py -------------------------------------------------------------------------------- /apps/certificates/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/certificates/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/certificates/models.py -------------------------------------------------------------------------------- /apps/certificates/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/certificates/tests.py -------------------------------------------------------------------------------- /apps/certificates/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/certificates/urls.py -------------------------------------------------------------------------------- /apps/certificates/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/certificates/views.py -------------------------------------------------------------------------------- /apps/lectures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/lectures/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/lectures/admin.py -------------------------------------------------------------------------------- /apps/lectures/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/lectures/apps.py -------------------------------------------------------------------------------- /apps/lectures/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/lectures/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/lectures/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/lectures/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/lectures/models.py -------------------------------------------------------------------------------- /apps/lectures/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/lectures/tests.py -------------------------------------------------------------------------------- /apps/lectures/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/lectures/urls.py -------------------------------------------------------------------------------- /apps/lectures/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/lectures/views.py -------------------------------------------------------------------------------- /apps/oauth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/oauth/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/oauth/admin.py -------------------------------------------------------------------------------- /apps/oauth/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/oauth/apps.py -------------------------------------------------------------------------------- /apps/oauth/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/oauth/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/oauth/models.py -------------------------------------------------------------------------------- /apps/oauth/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/oauth/tests.py -------------------------------------------------------------------------------- /apps/oauth/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/oauth/urls.py -------------------------------------------------------------------------------- /apps/oauth/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/oauth/views.py -------------------------------------------------------------------------------- /apps/projects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/projects/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/projects/admin.py -------------------------------------------------------------------------------- /apps/projects/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/projects/apps.py -------------------------------------------------------------------------------- /apps/projects/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/projects/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/projects/migrations/0002_auto_20200628_1518.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/projects/migrations/0002_auto_20200628_1518.py -------------------------------------------------------------------------------- /apps/projects/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/projects/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/projects/models.py -------------------------------------------------------------------------------- /apps/projects/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/projects/tests.py -------------------------------------------------------------------------------- /apps/projects/urls.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/projects/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /apps/submissions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/submissions/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/submissions/admin.py -------------------------------------------------------------------------------- /apps/submissions/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/submissions/apps.py -------------------------------------------------------------------------------- /apps/submissions/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/submissions/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/submissions/migrations/0002_auto_20200906_1610.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/submissions/migrations/0002_auto_20200906_1610.py -------------------------------------------------------------------------------- /apps/submissions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/submissions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/submissions/models.py -------------------------------------------------------------------------------- /apps/submissions/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/submissions/tests.py -------------------------------------------------------------------------------- /apps/submissions/urls.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/submissions/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /apps/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/users/admin.py -------------------------------------------------------------------------------- /apps/users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/users/apps.py -------------------------------------------------------------------------------- /apps/users/decorators.py: -------------------------------------------------------------------------------- 1 | # permissions logic 2 | # check token with Github 3 | -------------------------------------------------------------------------------- /apps/users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/users/migrations/0002_auto_20200920_1548.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/users/migrations/0002_auto_20200920_1548.py -------------------------------------------------------------------------------- /apps/users/migrations/0003_auto_20200920_1645.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/users/migrations/0003_auto_20200920_1645.py -------------------------------------------------------------------------------- /apps/users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/users/models.py -------------------------------------------------------------------------------- /apps/users/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/users/permissions.py -------------------------------------------------------------------------------- /apps/users/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/users/tests.py -------------------------------------------------------------------------------- /apps/users/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/users/urls.py -------------------------------------------------------------------------------- /apps/users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/users/views.py -------------------------------------------------------------------------------- /apps/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/utils/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/utils/admin.py -------------------------------------------------------------------------------- /apps/utils/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/utils/apps.py -------------------------------------------------------------------------------- /apps/utils/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/utils/models.py -------------------------------------------------------------------------------- /apps/utils/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/utils/tests.py -------------------------------------------------------------------------------- /apps/utils/validators.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/utils/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /apps/volunteers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/volunteers/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/volunteers/admin.py -------------------------------------------------------------------------------- /apps/volunteers/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/volunteers/apps.py -------------------------------------------------------------------------------- /apps/volunteers/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/volunteers/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/volunteers/migrations/0002_auto_20200920_1548.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/volunteers/migrations/0002_auto_20200920_1548.py -------------------------------------------------------------------------------- /apps/volunteers/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/volunteers/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/volunteers/models.py -------------------------------------------------------------------------------- /apps/volunteers/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/volunteers/tests.py -------------------------------------------------------------------------------- /apps/volunteers/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /apps/waitlist/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/waitlist/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/waitlist/admin.py -------------------------------------------------------------------------------- /apps/waitlist/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/waitlist/apps.py -------------------------------------------------------------------------------- /apps/waitlist/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/waitlist/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/waitlist/migrations/0002_auto_20200614_1811.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/waitlist/migrations/0002_auto_20200614_1811.py -------------------------------------------------------------------------------- /apps/waitlist/migrations/0003_waitlistentry_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/waitlist/migrations/0003_waitlistentry_level.py -------------------------------------------------------------------------------- /apps/waitlist/migrations/0004_auto_20200621_1534.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/waitlist/migrations/0004_auto_20200621_1534.py -------------------------------------------------------------------------------- /apps/waitlist/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/waitlist/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/waitlist/models.py -------------------------------------------------------------------------------- /apps/waitlist/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/apps/waitlist/tests.py -------------------------------------------------------------------------------- /apps/waitlist/urls.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/waitlist/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/config/asgi.py -------------------------------------------------------------------------------- /config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/config/settings.py -------------------------------------------------------------------------------- /config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/config/urls.py -------------------------------------------------------------------------------- /config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/config/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecodeschoolindy/student-management-system/HEAD/requirements.txt --------------------------------------------------------------------------------