├── .gitignore ├── Makefile ├── README.md ├── cdiig ├── cdiig │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── fill_dummy.py ├── home │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── models.py │ ├── templates │ │ └── home │ │ │ └── index │ ├── tests.py │ ├── urls.py │ └── views.py ├── manage.py ├── sample_data.csv └── student_management │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── images └── iig-admin-sample.gif └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | migrations 3 | db.sqlite3 4 | secret.py 5 | venv 6 | .vscode -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-student-fees-record-portal/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-student-fees-record-portal/HEAD/README.md -------------------------------------------------------------------------------- /cdiig/cdiig/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-student-fees-record-portal/HEAD/cdiig/cdiig/__init__.py -------------------------------------------------------------------------------- /cdiig/cdiig/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-student-fees-record-portal/HEAD/cdiig/cdiig/asgi.py -------------------------------------------------------------------------------- /cdiig/cdiig/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-student-fees-record-portal/HEAD/cdiig/cdiig/settings.py -------------------------------------------------------------------------------- /cdiig/cdiig/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-student-fees-record-portal/HEAD/cdiig/cdiig/urls.py -------------------------------------------------------------------------------- /cdiig/cdiig/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-student-fees-record-portal/HEAD/cdiig/cdiig/wsgi.py -------------------------------------------------------------------------------- /cdiig/fill_dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-student-fees-record-portal/HEAD/cdiig/fill_dummy.py -------------------------------------------------------------------------------- /cdiig/home/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-student-fees-record-portal/HEAD/cdiig/home/__init__.py -------------------------------------------------------------------------------- /cdiig/home/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-student-fees-record-portal/HEAD/cdiig/home/admin.py -------------------------------------------------------------------------------- /cdiig/home/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-student-fees-record-portal/HEAD/cdiig/home/apps.py -------------------------------------------------------------------------------- /cdiig/home/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-student-fees-record-portal/HEAD/cdiig/home/models.py -------------------------------------------------------------------------------- /cdiig/home/templates/home/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-student-fees-record-portal/HEAD/cdiig/home/templates/home/index -------------------------------------------------------------------------------- /cdiig/home/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-student-fees-record-portal/HEAD/cdiig/home/tests.py -------------------------------------------------------------------------------- /cdiig/home/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-student-fees-record-portal/HEAD/cdiig/home/urls.py -------------------------------------------------------------------------------- /cdiig/home/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-student-fees-record-portal/HEAD/cdiig/home/views.py -------------------------------------------------------------------------------- /cdiig/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-student-fees-record-portal/HEAD/cdiig/manage.py -------------------------------------------------------------------------------- /cdiig/sample_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-student-fees-record-portal/HEAD/cdiig/sample_data.csv -------------------------------------------------------------------------------- /cdiig/student_management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-student-fees-record-portal/HEAD/cdiig/student_management/__init__.py -------------------------------------------------------------------------------- /cdiig/student_management/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-student-fees-record-portal/HEAD/cdiig/student_management/admin.py -------------------------------------------------------------------------------- /cdiig/student_management/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-student-fees-record-portal/HEAD/cdiig/student_management/apps.py -------------------------------------------------------------------------------- /cdiig/student_management/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-student-fees-record-portal/HEAD/cdiig/student_management/models.py -------------------------------------------------------------------------------- /cdiig/student_management/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-student-fees-record-portal/HEAD/cdiig/student_management/tests.py -------------------------------------------------------------------------------- /cdiig/student_management/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-student-fees-record-portal/HEAD/cdiig/student_management/urls.py -------------------------------------------------------------------------------- /cdiig/student_management/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-student-fees-record-portal/HEAD/cdiig/student_management/views.py -------------------------------------------------------------------------------- /images/iig-admin-sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-student-fees-record-portal/HEAD/images/iig-admin-sample.gif -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-student-fees-record-portal/HEAD/requirements.txt --------------------------------------------------------------------------------