├── .gitignore ├── Pipfile ├── README.md ├── requirements.txt └── webplayground ├── .vscode └── settings.json ├── core ├── __init__.py ├── admin.py ├── apps.py ├── models.py ├── static │ └── core │ │ ├── css │ │ └── main.css │ │ ├── img │ │ ├── Thumbs.db │ │ └── placeholder.png │ │ ├── js │ │ └── main.js │ │ └── vendor │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ ├── font-awesome.css.map │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── less │ │ │ ├── animated.less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── screen-reader.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ │ └── jquery │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── jquery.slim.js │ │ ├── jquery.slim.min.js │ │ └── jquery.slim.min.map ├── templates │ └── core │ │ ├── base.html │ │ ├── home.html │ │ └── sample.html ├── tests.py ├── urls.py └── views.py ├── db.sqlite3 ├── manage.py ├── media └── profiles │ ├── Avatar2.png │ ├── Captura.JPG │ ├── c267a5e.jpg │ ├── gK0H2djd_400x400.jpeg │ ├── gandalf.jpg │ ├── masque-stormtrooper-star-wars-iv_1.jpg │ ├── photo.jpg │ ├── super_cat_xD.PNG │ └── uFETTA4v2.jpg ├── messenger ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20180417_1836.py │ └── __init__.py ├── models.py ├── templates │ └── messenger │ │ ├── thread_detail.html │ │ └── thread_list.html ├── tests.py ├── urls.py └── views.py ├── pages ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── static │ └── pages │ │ └── css │ │ └── custom_ckeditor.css ├── templates │ └── pages │ │ ├── includes │ │ └── pages_menu.html │ │ ├── page_confirm_delete.html │ │ ├── page_detail.html │ │ ├── page_form.html │ │ ├── page_list.html │ │ └── page_update_form.html ├── templatetags │ ├── __init__.py │ └── pages_extras.py ├── tests.py ├── urls.py └── views.py ├── profiles ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── templates │ └── profiles │ │ ├── profile_detail.html │ │ └── profile_list.html ├── tests.py ├── urls.py └── views.py ├── registration ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── static │ └── registration │ │ └── img │ │ └── no-avatar.jpg ├── templates │ └── registration │ │ ├── login.html │ │ ├── password_change_done.html │ │ ├── password_change_form.html │ │ ├── password_reset_complete.html │ │ ├── password_reset_confirm.html │ │ ├── password_reset_done.html │ │ ├── password_reset_form.html │ │ ├── profile_email_form.html │ │ ├── profile_form.html │ │ └── signup.html ├── tests.py ├── urls.py └── views.py └── webplayground ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/.gitignore -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/requirements.txt -------------------------------------------------------------------------------- /webplayground/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/.vscode/settings.json -------------------------------------------------------------------------------- /webplayground/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webplayground/core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/admin.py -------------------------------------------------------------------------------- /webplayground/core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/apps.py -------------------------------------------------------------------------------- /webplayground/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/models.py -------------------------------------------------------------------------------- /webplayground/core/static/core/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/css/main.css -------------------------------------------------------------------------------- /webplayground/core/static/core/img/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/img/Thumbs.db -------------------------------------------------------------------------------- /webplayground/core/static/core/img/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/img/placeholder.png -------------------------------------------------------------------------------- /webplayground/core/static/core/js/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/bootstrap/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/bootstrap/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/css/font-awesome.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/css/font-awesome.css.map -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/less/animated.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/less/animated.less -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/less/bordered-pulled.less -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/less/core.less -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/less/fixed-width.less -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/less/font-awesome.less -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/less/icons.less -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/less/larger.less -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/less/list.less -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/less/mixins.less -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/less/path.less -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/less/rotated-flipped.less -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/less/screen-reader.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/less/screen-reader.less -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/less/stacked.less -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/less/variables.less -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/scss/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/scss/_animated.scss -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/scss/_bordered-pulled.scss -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/scss/_core.scss -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/scss/_fixed-width.scss -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/scss/_icons.scss -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/scss/_larger.scss -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/scss/_list.scss -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/scss/_mixins.scss -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/scss/_path.scss -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/scss/_rotated-flipped.scss -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/scss/_screen-reader.scss -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/scss/_stacked.scss -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/scss/_variables.scss -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/font-awesome/scss/font-awesome.scss -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/jquery/jquery.min.map -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/jquery/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/jquery/jquery.slim.js -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/jquery/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/jquery/jquery.slim.min.js -------------------------------------------------------------------------------- /webplayground/core/static/core/vendor/jquery/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/static/core/vendor/jquery/jquery.slim.min.map -------------------------------------------------------------------------------- /webplayground/core/templates/core/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/templates/core/base.html -------------------------------------------------------------------------------- /webplayground/core/templates/core/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/templates/core/home.html -------------------------------------------------------------------------------- /webplayground/core/templates/core/sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/templates/core/sample.html -------------------------------------------------------------------------------- /webplayground/core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/tests.py -------------------------------------------------------------------------------- /webplayground/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/urls.py -------------------------------------------------------------------------------- /webplayground/core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/core/views.py -------------------------------------------------------------------------------- /webplayground/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/db.sqlite3 -------------------------------------------------------------------------------- /webplayground/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/manage.py -------------------------------------------------------------------------------- /webplayground/media/profiles/Avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/media/profiles/Avatar2.png -------------------------------------------------------------------------------- /webplayground/media/profiles/Captura.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/media/profiles/Captura.JPG -------------------------------------------------------------------------------- /webplayground/media/profiles/c267a5e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/media/profiles/c267a5e.jpg -------------------------------------------------------------------------------- /webplayground/media/profiles/gK0H2djd_400x400.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/media/profiles/gK0H2djd_400x400.jpeg -------------------------------------------------------------------------------- /webplayground/media/profiles/gandalf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/media/profiles/gandalf.jpg -------------------------------------------------------------------------------- /webplayground/media/profiles/masque-stormtrooper-star-wars-iv_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/media/profiles/masque-stormtrooper-star-wars-iv_1.jpg -------------------------------------------------------------------------------- /webplayground/media/profiles/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/media/profiles/photo.jpg -------------------------------------------------------------------------------- /webplayground/media/profiles/super_cat_xD.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/media/profiles/super_cat_xD.PNG -------------------------------------------------------------------------------- /webplayground/media/profiles/uFETTA4v2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/media/profiles/uFETTA4v2.jpg -------------------------------------------------------------------------------- /webplayground/messenger/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webplayground/messenger/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/messenger/admin.py -------------------------------------------------------------------------------- /webplayground/messenger/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/messenger/apps.py -------------------------------------------------------------------------------- /webplayground/messenger/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/messenger/migrations/0001_initial.py -------------------------------------------------------------------------------- /webplayground/messenger/migrations/0002_auto_20180417_1836.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/messenger/migrations/0002_auto_20180417_1836.py -------------------------------------------------------------------------------- /webplayground/messenger/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webplayground/messenger/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/messenger/models.py -------------------------------------------------------------------------------- /webplayground/messenger/templates/messenger/thread_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/messenger/templates/messenger/thread_detail.html -------------------------------------------------------------------------------- /webplayground/messenger/templates/messenger/thread_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/messenger/templates/messenger/thread_list.html -------------------------------------------------------------------------------- /webplayground/messenger/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/messenger/tests.py -------------------------------------------------------------------------------- /webplayground/messenger/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/messenger/urls.py -------------------------------------------------------------------------------- /webplayground/messenger/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/messenger/views.py -------------------------------------------------------------------------------- /webplayground/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webplayground/pages/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/pages/admin.py -------------------------------------------------------------------------------- /webplayground/pages/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/pages/apps.py -------------------------------------------------------------------------------- /webplayground/pages/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/pages/forms.py -------------------------------------------------------------------------------- /webplayground/pages/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/pages/migrations/0001_initial.py -------------------------------------------------------------------------------- /webplayground/pages/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webplayground/pages/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/pages/models.py -------------------------------------------------------------------------------- /webplayground/pages/static/pages/css/custom_ckeditor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/pages/static/pages/css/custom_ckeditor.css -------------------------------------------------------------------------------- /webplayground/pages/templates/pages/includes/pages_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/pages/templates/pages/includes/pages_menu.html -------------------------------------------------------------------------------- /webplayground/pages/templates/pages/page_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/pages/templates/pages/page_confirm_delete.html -------------------------------------------------------------------------------- /webplayground/pages/templates/pages/page_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/pages/templates/pages/page_detail.html -------------------------------------------------------------------------------- /webplayground/pages/templates/pages/page_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/pages/templates/pages/page_form.html -------------------------------------------------------------------------------- /webplayground/pages/templates/pages/page_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/pages/templates/pages/page_list.html -------------------------------------------------------------------------------- /webplayground/pages/templates/pages/page_update_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/pages/templates/pages/page_update_form.html -------------------------------------------------------------------------------- /webplayground/pages/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webplayground/pages/templatetags/pages_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/pages/templatetags/pages_extras.py -------------------------------------------------------------------------------- /webplayground/pages/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/pages/tests.py -------------------------------------------------------------------------------- /webplayground/pages/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/pages/urls.py -------------------------------------------------------------------------------- /webplayground/pages/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/pages/views.py -------------------------------------------------------------------------------- /webplayground/profiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webplayground/profiles/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/profiles/admin.py -------------------------------------------------------------------------------- /webplayground/profiles/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/profiles/apps.py -------------------------------------------------------------------------------- /webplayground/profiles/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webplayground/profiles/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models -------------------------------------------------------------------------------- /webplayground/profiles/templates/profiles/profile_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/profiles/templates/profiles/profile_detail.html -------------------------------------------------------------------------------- /webplayground/profiles/templates/profiles/profile_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/profiles/templates/profiles/profile_list.html -------------------------------------------------------------------------------- /webplayground/profiles/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/profiles/tests.py -------------------------------------------------------------------------------- /webplayground/profiles/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/profiles/urls.py -------------------------------------------------------------------------------- /webplayground/profiles/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/profiles/views.py -------------------------------------------------------------------------------- /webplayground/registration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webplayground/registration/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/registration/admin.py -------------------------------------------------------------------------------- /webplayground/registration/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/registration/apps.py -------------------------------------------------------------------------------- /webplayground/registration/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/registration/forms.py -------------------------------------------------------------------------------- /webplayground/registration/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/registration/migrations/0001_initial.py -------------------------------------------------------------------------------- /webplayground/registration/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webplayground/registration/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/registration/models.py -------------------------------------------------------------------------------- /webplayground/registration/static/registration/img/no-avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/registration/static/registration/img/no-avatar.jpg -------------------------------------------------------------------------------- /webplayground/registration/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/registration/templates/registration/login.html -------------------------------------------------------------------------------- /webplayground/registration/templates/registration/password_change_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/registration/templates/registration/password_change_done.html -------------------------------------------------------------------------------- /webplayground/registration/templates/registration/password_change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/registration/templates/registration/password_change_form.html -------------------------------------------------------------------------------- /webplayground/registration/templates/registration/password_reset_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/registration/templates/registration/password_reset_complete.html -------------------------------------------------------------------------------- /webplayground/registration/templates/registration/password_reset_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/registration/templates/registration/password_reset_confirm.html -------------------------------------------------------------------------------- /webplayground/registration/templates/registration/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/registration/templates/registration/password_reset_done.html -------------------------------------------------------------------------------- /webplayground/registration/templates/registration/password_reset_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/registration/templates/registration/password_reset_form.html -------------------------------------------------------------------------------- /webplayground/registration/templates/registration/profile_email_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/registration/templates/registration/profile_email_form.html -------------------------------------------------------------------------------- /webplayground/registration/templates/registration/profile_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/registration/templates/registration/profile_form.html -------------------------------------------------------------------------------- /webplayground/registration/templates/registration/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/registration/templates/registration/signup.html -------------------------------------------------------------------------------- /webplayground/registration/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/registration/tests.py -------------------------------------------------------------------------------- /webplayground/registration/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/registration/urls.py -------------------------------------------------------------------------------- /webplayground/registration/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/registration/views.py -------------------------------------------------------------------------------- /webplayground/webplayground/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webplayground/webplayground/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/webplayground/asgi.py -------------------------------------------------------------------------------- /webplayground/webplayground/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/webplayground/settings.py -------------------------------------------------------------------------------- /webplayground/webplayground/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/webplayground/urls.py -------------------------------------------------------------------------------- /webplayground/webplayground/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hektorprofe/webplayground/HEAD/webplayground/webplayground/wsgi.py --------------------------------------------------------------------------------