├── .gitignore ├── Dockerfile ├── base ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── admin.cpython-310.pyc │ ├── apps.cpython-310.pyc │ ├── forms.cpython-310.pyc │ ├── models.cpython-310.pyc │ ├── urls.cpython-310.pyc │ └── views.cpython-310.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-310.pyc ├── models.py ├── templates │ ├── 404.html │ ├── index.html │ ├── login.html │ ├── main.html │ ├── privacy.html │ └── t&c.html ├── tests.py ├── urls.py └── views.py ├── core ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── settings.cpython-310.pyc │ ├── urls.cpython-310.pyc │ └── wsgi.cpython-310.pyc ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── db.sqlite3 ├── docker-compose.yml ├── main ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── admin.cpython-310.pyc │ ├── apps.cpython-310.pyc │ ├── models.cpython-310.pyc │ ├── urls.cpython-310.pyc │ └── views.cpython-310.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_googledrivefolder_background_image_and_more.py │ ├── 0003_alter_googledrivefolder_background_image.py │ ├── 0004_alter_googledrivefolder_background_image.py │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-310.pyc ├── models.py ├── templates │ ├── customize.html │ ├── dashboard.html │ ├── gallary.html │ └── upload.html ├── tests.py ├── urls.py └── views.py ├── manage.py ├── readme.md ├── requirements.txt ├── static ├── favicon.ico └── glr │ ├── css │ ├── bootstrap │ │ ├── css │ │ │ └── bootstrap.css │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── popper.js │ └── fontawesome │ │ ├── css │ │ └── all.css │ │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 │ ├── images │ ├── 11.png │ ├── 22.png │ ├── background_qr.jpg │ ├── gravatar.jpg │ ├── sharemysnaps_black.png │ └── sharemysnaps_white.png │ ├── js │ ├── contactform.js │ ├── easing.js │ ├── fitvids.js │ ├── image_preview.js │ ├── init.js │ ├── isotope.js │ ├── jquery-migrate.min.js │ ├── jquery.form.min.js │ ├── jquery.js │ ├── owl-carousel │ │ ├── owl.carousel.css │ │ └── owl.carousel.js │ └── simple-lightbox.js │ └── style.css └── staticfiles ├── admin ├── css │ ├── autocomplete.css │ ├── base.css │ ├── changelists.css │ ├── dark_mode.css │ ├── dashboard.css │ ├── forms.css │ ├── login.css │ ├── nav_sidebar.css │ ├── responsive.css │ ├── responsive_rtl.css │ ├── rtl.css │ ├── unusable_password_field.css │ ├── vendor │ │ └── select2 │ │ │ ├── LICENSE-SELECT2.md │ │ │ ├── select2.css │ │ │ └── select2.min.css │ └── widgets.css ├── img │ ├── LICENSE │ ├── README.txt │ ├── calendar-icons.svg │ ├── gis │ │ ├── move_vertex_off.svg │ │ └── move_vertex_on.svg │ ├── icon-addlink.svg │ ├── icon-alert.svg │ ├── icon-calendar.svg │ ├── icon-changelink.svg │ ├── icon-clock.svg │ ├── icon-deletelink.svg │ ├── icon-hidelink.svg │ ├── icon-no.svg │ ├── icon-unknown-alt.svg │ ├── icon-unknown.svg │ ├── icon-viewlink.svg │ ├── icon-yes.svg │ ├── inline-delete.svg │ ├── search.svg │ ├── selector-icons.svg │ ├── sorting-icons.svg │ ├── tooltag-add.svg │ └── tooltag-arrowright.svg └── js │ ├── SelectBox.js │ ├── SelectFilter2.js │ ├── actions.js │ ├── admin │ ├── DateTimeShortcuts.js │ └── RelatedObjectLookups.js │ ├── autocomplete.js │ ├── calendar.js │ ├── cancel.js │ ├── change_form.js │ ├── core.js │ ├── filters.js │ ├── inlines.js │ ├── jquery.init.js │ ├── nav_sidebar.js │ ├── popup_response.js │ ├── prepopulate.js │ ├── prepopulate_init.js │ ├── theme.js │ ├── unusable_password_field.js │ ├── urlify.js │ └── vendor │ ├── jquery │ ├── LICENSE.txt │ ├── jquery.js │ └── jquery.min.js │ ├── select2 │ ├── LICENSE.md │ ├── i18n │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── da.js │ │ ├── de.js │ │ ├── dsb.js │ │ ├── el.js │ │ ├── en.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hsb.js │ │ ├── hu.js │ │ ├── hy.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── ne.js │ │ ├── nl.js │ │ ├── pl.js │ │ ├── ps.js │ │ ├── pt-BR.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-Cyrl.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tk.js │ │ ├── tr.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-CN.js │ │ └── zh-TW.js │ ├── select2.full.js │ └── select2.full.min.js │ └── xregexp │ ├── LICENSE.txt │ ├── xregexp.js │ └── xregexp.min.js ├── favicon.ico └── glr ├── css ├── bootstrap │ ├── css │ │ └── bootstrap.css │ └── js │ │ ├── bootstrap.js │ │ └── popper.js └── fontawesome │ ├── css │ └── all.css │ └── webfonts │ ├── fa-brands-400.eot │ ├── fa-brands-400.svg │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.svg │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.eot │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ └── fa-solid-900.woff2 ├── images ├── 11.png ├── 22.png ├── background_qr.jpg ├── gravatar.jpg ├── sharemysnaps_black.png └── sharemysnaps_white.png ├── js ├── contactform.js ├── easing.js ├── fitvids.js ├── init.js ├── isotope.js ├── jquery-migrate.min.js ├── jquery.form.min.js ├── jquery.js ├── owl-carousel │ ├── owl.carousel.css │ └── owl.carousel.js └── simple-lightbox.js └── style.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/Dockerfile -------------------------------------------------------------------------------- /base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /base/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/base/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /base/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/base/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /base/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/base/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /base/__pycache__/forms.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/base/__pycache__/forms.cpython-310.pyc -------------------------------------------------------------------------------- /base/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/base/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /base/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/base/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /base/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/base/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /base/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/base/admin.py -------------------------------------------------------------------------------- /base/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/base/apps.py -------------------------------------------------------------------------------- /base/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/base/forms.py -------------------------------------------------------------------------------- /base/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /base/migrations/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/base/migrations/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /base/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/base/models.py -------------------------------------------------------------------------------- /base/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/base/templates/404.html -------------------------------------------------------------------------------- /base/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/base/templates/index.html -------------------------------------------------------------------------------- /base/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/base/templates/login.html -------------------------------------------------------------------------------- /base/templates/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/base/templates/main.html -------------------------------------------------------------------------------- /base/templates/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/base/templates/privacy.html -------------------------------------------------------------------------------- /base/templates/t&c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/base/templates/t&c.html -------------------------------------------------------------------------------- /base/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/base/tests.py -------------------------------------------------------------------------------- /base/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/base/urls.py -------------------------------------------------------------------------------- /base/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/base/views.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/core/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /core/__pycache__/settings.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/core/__pycache__/settings.cpython-310.pyc -------------------------------------------------------------------------------- /core/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/core/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /core/__pycache__/wsgi.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/core/__pycache__/wsgi.cpython-310.pyc -------------------------------------------------------------------------------- /core/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/core/asgi.py -------------------------------------------------------------------------------- /core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/core/settings.py -------------------------------------------------------------------------------- /core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/core/urls.py -------------------------------------------------------------------------------- /core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/core/wsgi.py -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /main/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/main/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /main/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/main/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /main/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/main/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /main/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/main/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /main/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/main/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /main/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/main/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /main/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/main/admin.py -------------------------------------------------------------------------------- /main/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/main/apps.py -------------------------------------------------------------------------------- /main/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/main/forms.py -------------------------------------------------------------------------------- /main/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/main/migrations/0001_initial.py -------------------------------------------------------------------------------- /main/migrations/0002_googledrivefolder_background_image_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/main/migrations/0002_googledrivefolder_background_image_and_more.py -------------------------------------------------------------------------------- /main/migrations/0003_alter_googledrivefolder_background_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/main/migrations/0003_alter_googledrivefolder_background_image.py -------------------------------------------------------------------------------- /main/migrations/0004_alter_googledrivefolder_background_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/main/migrations/0004_alter_googledrivefolder_background_image.py -------------------------------------------------------------------------------- /main/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/migrations/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/main/migrations/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /main/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/main/models.py -------------------------------------------------------------------------------- /main/templates/customize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/main/templates/customize.html -------------------------------------------------------------------------------- /main/templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/main/templates/dashboard.html -------------------------------------------------------------------------------- /main/templates/gallary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/main/templates/gallary.html -------------------------------------------------------------------------------- /main/templates/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/main/templates/upload.html -------------------------------------------------------------------------------- /main/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/main/tests.py -------------------------------------------------------------------------------- /main/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/main/urls.py -------------------------------------------------------------------------------- /main/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/main/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/manage.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/glr/css/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/css/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /static/glr/css/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/css/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /static/glr/css/bootstrap/js/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/css/bootstrap/js/popper.js -------------------------------------------------------------------------------- /static/glr/css/fontawesome/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/css/fontawesome/css/all.css -------------------------------------------------------------------------------- /static/glr/css/fontawesome/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/css/fontawesome/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /static/glr/css/fontawesome/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/css/fontawesome/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /static/glr/css/fontawesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/css/fontawesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /static/glr/css/fontawesome/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/css/fontawesome/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /static/glr/css/fontawesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/css/fontawesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /static/glr/css/fontawesome/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/css/fontawesome/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /static/glr/css/fontawesome/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/css/fontawesome/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /static/glr/css/fontawesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/css/fontawesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /static/glr/css/fontawesome/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/css/fontawesome/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /static/glr/css/fontawesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/css/fontawesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /static/glr/css/fontawesome/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/css/fontawesome/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /static/glr/css/fontawesome/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/css/fontawesome/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /static/glr/css/fontawesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/css/fontawesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /static/glr/css/fontawesome/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/css/fontawesome/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /static/glr/css/fontawesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/css/fontawesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /static/glr/images/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/images/11.png -------------------------------------------------------------------------------- /static/glr/images/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/images/22.png -------------------------------------------------------------------------------- /static/glr/images/background_qr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/images/background_qr.jpg -------------------------------------------------------------------------------- /static/glr/images/gravatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/images/gravatar.jpg -------------------------------------------------------------------------------- /static/glr/images/sharemysnaps_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/images/sharemysnaps_black.png -------------------------------------------------------------------------------- /static/glr/images/sharemysnaps_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/images/sharemysnaps_white.png -------------------------------------------------------------------------------- /static/glr/js/contactform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/js/contactform.js -------------------------------------------------------------------------------- /static/glr/js/easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/js/easing.js -------------------------------------------------------------------------------- /static/glr/js/fitvids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/js/fitvids.js -------------------------------------------------------------------------------- /static/glr/js/image_preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/js/image_preview.js -------------------------------------------------------------------------------- /static/glr/js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/js/init.js -------------------------------------------------------------------------------- /static/glr/js/isotope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/js/isotope.js -------------------------------------------------------------------------------- /static/glr/js/jquery-migrate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/js/jquery-migrate.min.js -------------------------------------------------------------------------------- /static/glr/js/jquery.form.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/js/jquery.form.min.js -------------------------------------------------------------------------------- /static/glr/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/js/jquery.js -------------------------------------------------------------------------------- /static/glr/js/owl-carousel/owl.carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/js/owl-carousel/owl.carousel.css -------------------------------------------------------------------------------- /static/glr/js/owl-carousel/owl.carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/js/owl-carousel/owl.carousel.js -------------------------------------------------------------------------------- /static/glr/js/simple-lightbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/js/simple-lightbox.js -------------------------------------------------------------------------------- /static/glr/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/static/glr/style.css -------------------------------------------------------------------------------- /staticfiles/admin/css/autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/css/autocomplete.css -------------------------------------------------------------------------------- /staticfiles/admin/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/css/base.css -------------------------------------------------------------------------------- /staticfiles/admin/css/changelists.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/css/changelists.css -------------------------------------------------------------------------------- /staticfiles/admin/css/dark_mode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/css/dark_mode.css -------------------------------------------------------------------------------- /staticfiles/admin/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/css/dashboard.css -------------------------------------------------------------------------------- /staticfiles/admin/css/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/css/forms.css -------------------------------------------------------------------------------- /staticfiles/admin/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/css/login.css -------------------------------------------------------------------------------- /staticfiles/admin/css/nav_sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/css/nav_sidebar.css -------------------------------------------------------------------------------- /staticfiles/admin/css/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/css/responsive.css -------------------------------------------------------------------------------- /staticfiles/admin/css/responsive_rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/css/responsive_rtl.css -------------------------------------------------------------------------------- /staticfiles/admin/css/rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/css/rtl.css -------------------------------------------------------------------------------- /staticfiles/admin/css/unusable_password_field.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/css/unusable_password_field.css -------------------------------------------------------------------------------- /staticfiles/admin/css/vendor/select2/LICENSE-SELECT2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/css/vendor/select2/LICENSE-SELECT2.md -------------------------------------------------------------------------------- /staticfiles/admin/css/vendor/select2/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/css/vendor/select2/select2.css -------------------------------------------------------------------------------- /staticfiles/admin/css/vendor/select2/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/css/vendor/select2/select2.min.css -------------------------------------------------------------------------------- /staticfiles/admin/css/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/css/widgets.css -------------------------------------------------------------------------------- /staticfiles/admin/img/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/img/LICENSE -------------------------------------------------------------------------------- /staticfiles/admin/img/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/img/README.txt -------------------------------------------------------------------------------- /staticfiles/admin/img/calendar-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/img/calendar-icons.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/gis/move_vertex_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/img/gis/move_vertex_off.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/gis/move_vertex_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/img/gis/move_vertex_on.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-addlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/img/icon-addlink.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/img/icon-alert.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/img/icon-calendar.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-changelink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/img/icon-changelink.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/img/icon-clock.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-deletelink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/img/icon-deletelink.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-hidelink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/img/icon-hidelink.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-no.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/img/icon-no.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-unknown-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/img/icon-unknown-alt.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/img/icon-unknown.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-viewlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/img/icon-viewlink.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-yes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/img/icon-yes.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/inline-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/img/inline-delete.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/img/search.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/selector-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/img/selector-icons.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/sorting-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/img/sorting-icons.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/tooltag-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/img/tooltag-add.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/tooltag-arrowright.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/img/tooltag-arrowright.svg -------------------------------------------------------------------------------- /staticfiles/admin/js/SelectBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/SelectBox.js -------------------------------------------------------------------------------- /staticfiles/admin/js/SelectFilter2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/SelectFilter2.js -------------------------------------------------------------------------------- /staticfiles/admin/js/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/actions.js -------------------------------------------------------------------------------- /staticfiles/admin/js/admin/DateTimeShortcuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/admin/DateTimeShortcuts.js -------------------------------------------------------------------------------- /staticfiles/admin/js/admin/RelatedObjectLookups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/admin/RelatedObjectLookups.js -------------------------------------------------------------------------------- /staticfiles/admin/js/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/autocomplete.js -------------------------------------------------------------------------------- /staticfiles/admin/js/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/calendar.js -------------------------------------------------------------------------------- /staticfiles/admin/js/cancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/cancel.js -------------------------------------------------------------------------------- /staticfiles/admin/js/change_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/change_form.js -------------------------------------------------------------------------------- /staticfiles/admin/js/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/core.js -------------------------------------------------------------------------------- /staticfiles/admin/js/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/filters.js -------------------------------------------------------------------------------- /staticfiles/admin/js/inlines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/inlines.js -------------------------------------------------------------------------------- /staticfiles/admin/js/jquery.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/jquery.init.js -------------------------------------------------------------------------------- /staticfiles/admin/js/nav_sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/nav_sidebar.js -------------------------------------------------------------------------------- /staticfiles/admin/js/popup_response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/popup_response.js -------------------------------------------------------------------------------- /staticfiles/admin/js/prepopulate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/prepopulate.js -------------------------------------------------------------------------------- /staticfiles/admin/js/prepopulate_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/prepopulate_init.js -------------------------------------------------------------------------------- /staticfiles/admin/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/theme.js -------------------------------------------------------------------------------- /staticfiles/admin/js/unusable_password_field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/unusable_password_field.js -------------------------------------------------------------------------------- /staticfiles/admin/js/urlify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/urlify.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/jquery/LICENSE.txt -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/LICENSE.md -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/af.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/ar.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/az.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/bg.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/bn.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/bs.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/ca.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/cs.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/da.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/de.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/dsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/dsb.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/el.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/en.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/es.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/et.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/eu.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/fa.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/fi.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/fr.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/gl.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/he.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/hi.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/hr.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/hsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/hsb.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/hu.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/hy.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/id.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/is.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/it.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/ja.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/ka.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/km.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/ko.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/lt.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/lv.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/mk.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/ms.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/nb.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/ne.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/nl.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/pl.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/ps.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/pt-BR.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/pt.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/ro.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/ru.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/sk.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/sl.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/sq.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sr-Cyrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/sr-Cyrl.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/sr.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/sv.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/th.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/tk.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/tr.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/uk.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/vi.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/zh-CN.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/i18n/zh-TW.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/select2.full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/select2.full.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/select2.full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/select2/select2.full.min.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/xregexp/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/xregexp/LICENSE.txt -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/xregexp/xregexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/xregexp/xregexp.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/xregexp/xregexp.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/admin/js/vendor/xregexp/xregexp.min.js -------------------------------------------------------------------------------- /staticfiles/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/favicon.ico -------------------------------------------------------------------------------- /staticfiles/glr/css/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/css/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /staticfiles/glr/css/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/css/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /staticfiles/glr/css/bootstrap/js/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/css/bootstrap/js/popper.js -------------------------------------------------------------------------------- /staticfiles/glr/css/fontawesome/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/css/fontawesome/css/all.css -------------------------------------------------------------------------------- /staticfiles/glr/css/fontawesome/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/css/fontawesome/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /staticfiles/glr/css/fontawesome/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/css/fontawesome/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /staticfiles/glr/css/fontawesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/css/fontawesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /staticfiles/glr/css/fontawesome/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/css/fontawesome/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /staticfiles/glr/css/fontawesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/css/fontawesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /staticfiles/glr/css/fontawesome/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/css/fontawesome/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /staticfiles/glr/css/fontawesome/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/css/fontawesome/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /staticfiles/glr/css/fontawesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/css/fontawesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /staticfiles/glr/css/fontawesome/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/css/fontawesome/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /staticfiles/glr/css/fontawesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/css/fontawesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /staticfiles/glr/css/fontawesome/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/css/fontawesome/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /staticfiles/glr/css/fontawesome/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/css/fontawesome/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /staticfiles/glr/css/fontawesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/css/fontawesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /staticfiles/glr/css/fontawesome/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/css/fontawesome/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /staticfiles/glr/css/fontawesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/css/fontawesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /staticfiles/glr/images/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/images/11.png -------------------------------------------------------------------------------- /staticfiles/glr/images/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/images/22.png -------------------------------------------------------------------------------- /staticfiles/glr/images/background_qr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/images/background_qr.jpg -------------------------------------------------------------------------------- /staticfiles/glr/images/gravatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/images/gravatar.jpg -------------------------------------------------------------------------------- /staticfiles/glr/images/sharemysnaps_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/images/sharemysnaps_black.png -------------------------------------------------------------------------------- /staticfiles/glr/images/sharemysnaps_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/images/sharemysnaps_white.png -------------------------------------------------------------------------------- /staticfiles/glr/js/contactform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/js/contactform.js -------------------------------------------------------------------------------- /staticfiles/glr/js/easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/js/easing.js -------------------------------------------------------------------------------- /staticfiles/glr/js/fitvids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/js/fitvids.js -------------------------------------------------------------------------------- /staticfiles/glr/js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/js/init.js -------------------------------------------------------------------------------- /staticfiles/glr/js/isotope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/js/isotope.js -------------------------------------------------------------------------------- /staticfiles/glr/js/jquery-migrate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/js/jquery-migrate.min.js -------------------------------------------------------------------------------- /staticfiles/glr/js/jquery.form.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/js/jquery.form.min.js -------------------------------------------------------------------------------- /staticfiles/glr/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/js/jquery.js -------------------------------------------------------------------------------- /staticfiles/glr/js/owl-carousel/owl.carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/js/owl-carousel/owl.carousel.css -------------------------------------------------------------------------------- /staticfiles/glr/js/owl-carousel/owl.carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/js/owl-carousel/owl.carousel.js -------------------------------------------------------------------------------- /staticfiles/glr/js/simple-lightbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/js/simple-lightbox.js -------------------------------------------------------------------------------- /staticfiles/glr/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anujjamdade007/sharemysnaps/HEAD/staticfiles/glr/style.css --------------------------------------------------------------------------------