├── .gitattributes ├── .idea ├── 2nd stage.iml ├── misc.xml ├── modules.xml └── workspace.xml ├── README.md ├── django-dark.png └── myproject ├── .idea ├── misc.xml ├── modules.xml ├── myproject.iml ├── vcs.xml └── workspace.xml ├── db.sqlite3 ├── ddp ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── admin.cpython-37.pyc │ ├── decorators.cpython-37.pyc │ ├── filters.cpython-37.pyc │ ├── forms.cpython-37.pyc │ ├── models.cpython-37.pyc │ ├── urls.cpython-37.pyc │ └── views.cpython-37.pyc ├── admin.py ├── apps.py ├── decorators.py ├── filters.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20201104_2132.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-37.pyc │ │ ├── 0002_auto_20201104_2132.cpython-37.pyc │ │ └── __init__.cpython-37.pyc ├── models.py ├── templates │ └── ddp │ │ ├── activeuser.html │ │ ├── adminprofile.html │ │ ├── blockuser.html │ │ ├── dashboard.html │ │ ├── deletefile.html │ │ ├── download.html │ │ ├── footer.html │ │ ├── login.html │ │ ├── main.html │ │ ├── navbar.html │ │ ├── password_reset.html │ │ ├── password_reset_done.html │ │ ├── password_reset_form.html │ │ ├── password_reset_sent.html │ │ ├── register.html │ │ ├── sharedelete.html │ │ ├── shareform.html │ │ ├── uploadform.html │ │ └── user.html ├── tests.py ├── urls.py └── views.py ├── manage.py ├── myproject ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── settings.cpython-37.pyc │ ├── urls.cpython-37.pyc │ └── wsgi.cpython-37.pyc ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py └── static ├── css └── main.css └── images └── cloud1.gif /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/.gitattributes -------------------------------------------------------------------------------- /.idea/2nd stage.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/.idea/2nd stage.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/README.md -------------------------------------------------------------------------------- /django-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/django-dark.png -------------------------------------------------------------------------------- /myproject/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/.idea/misc.xml -------------------------------------------------------------------------------- /myproject/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/.idea/modules.xml -------------------------------------------------------------------------------- /myproject/.idea/myproject.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/.idea/myproject.iml -------------------------------------------------------------------------------- /myproject/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/.idea/vcs.xml -------------------------------------------------------------------------------- /myproject/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/.idea/workspace.xml -------------------------------------------------------------------------------- /myproject/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myproject/ddp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myproject/ddp/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /myproject/ddp/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /myproject/ddp/__pycache__/decorators.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/__pycache__/decorators.cpython-37.pyc -------------------------------------------------------------------------------- /myproject/ddp/__pycache__/filters.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/__pycache__/filters.cpython-37.pyc -------------------------------------------------------------------------------- /myproject/ddp/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /myproject/ddp/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /myproject/ddp/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /myproject/ddp/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /myproject/ddp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/admin.py -------------------------------------------------------------------------------- /myproject/ddp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/apps.py -------------------------------------------------------------------------------- /myproject/ddp/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/decorators.py -------------------------------------------------------------------------------- /myproject/ddp/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/filters.py -------------------------------------------------------------------------------- /myproject/ddp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/forms.py -------------------------------------------------------------------------------- /myproject/ddp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/migrations/0001_initial.py -------------------------------------------------------------------------------- /myproject/ddp/migrations/0002_auto_20201104_2132.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/migrations/0002_auto_20201104_2132.py -------------------------------------------------------------------------------- /myproject/ddp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myproject/ddp/migrations/__pycache__/0001_initial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /myproject/ddp/migrations/__pycache__/0002_auto_20201104_2132.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/migrations/__pycache__/0002_auto_20201104_2132.cpython-37.pyc -------------------------------------------------------------------------------- /myproject/ddp/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /myproject/ddp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/models.py -------------------------------------------------------------------------------- /myproject/ddp/templates/ddp/activeuser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/templates/ddp/activeuser.html -------------------------------------------------------------------------------- /myproject/ddp/templates/ddp/adminprofile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/templates/ddp/adminprofile.html -------------------------------------------------------------------------------- /myproject/ddp/templates/ddp/blockuser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/templates/ddp/blockuser.html -------------------------------------------------------------------------------- /myproject/ddp/templates/ddp/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/templates/ddp/dashboard.html -------------------------------------------------------------------------------- /myproject/ddp/templates/ddp/deletefile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/templates/ddp/deletefile.html -------------------------------------------------------------------------------- /myproject/ddp/templates/ddp/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/templates/ddp/download.html -------------------------------------------------------------------------------- /myproject/ddp/templates/ddp/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/templates/ddp/footer.html -------------------------------------------------------------------------------- /myproject/ddp/templates/ddp/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/templates/ddp/login.html -------------------------------------------------------------------------------- /myproject/ddp/templates/ddp/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/templates/ddp/main.html -------------------------------------------------------------------------------- /myproject/ddp/templates/ddp/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/templates/ddp/navbar.html -------------------------------------------------------------------------------- /myproject/ddp/templates/ddp/password_reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/templates/ddp/password_reset.html -------------------------------------------------------------------------------- /myproject/ddp/templates/ddp/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/templates/ddp/password_reset_done.html -------------------------------------------------------------------------------- /myproject/ddp/templates/ddp/password_reset_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/templates/ddp/password_reset_form.html -------------------------------------------------------------------------------- /myproject/ddp/templates/ddp/password_reset_sent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/templates/ddp/password_reset_sent.html -------------------------------------------------------------------------------- /myproject/ddp/templates/ddp/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/templates/ddp/register.html -------------------------------------------------------------------------------- /myproject/ddp/templates/ddp/sharedelete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/templates/ddp/sharedelete.html -------------------------------------------------------------------------------- /myproject/ddp/templates/ddp/shareform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/templates/ddp/shareform.html -------------------------------------------------------------------------------- /myproject/ddp/templates/ddp/uploadform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/templates/ddp/uploadform.html -------------------------------------------------------------------------------- /myproject/ddp/templates/ddp/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/templates/ddp/user.html -------------------------------------------------------------------------------- /myproject/ddp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/tests.py -------------------------------------------------------------------------------- /myproject/ddp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/urls.py -------------------------------------------------------------------------------- /myproject/ddp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/ddp/views.py -------------------------------------------------------------------------------- /myproject/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/manage.py -------------------------------------------------------------------------------- /myproject/myproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myproject/myproject/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/myproject/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /myproject/myproject/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/myproject/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /myproject/myproject/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/myproject/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /myproject/myproject/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/myproject/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /myproject/myproject/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/myproject/asgi.py -------------------------------------------------------------------------------- /myproject/myproject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/myproject/settings.py -------------------------------------------------------------------------------- /myproject/myproject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/myproject/urls.py -------------------------------------------------------------------------------- /myproject/myproject/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/myproject/wsgi.py -------------------------------------------------------------------------------- /myproject/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/static/css/main.css -------------------------------------------------------------------------------- /myproject/static/images/cloud1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilupulmanodya/Data-duplication-removal-using-file-checksum/HEAD/myproject/static/images/cloud1.gif --------------------------------------------------------------------------------