├── .gitattributes ├── .gitignore ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── Procfile ├── README.md ├── README.txt ├── TODO ├── blob └── master │ └── docs │ └── index.rst ├── datas ├── __init__.py ├── admin.py ├── apps.py ├── models.py ├── serializers.py ├── tests.py └── views.py ├── devices ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── models.py ├── templatetags │ ├── __init__.py │ └── custom_tags.py ├── tests.py └── views.py ├── docker-compose.yml ├── docs ├── Makefile ├── README.txt ├── _build │ ├── doctrees │ │ ├── api_docs.doctree │ │ ├── api_get.doctree │ │ ├── api_post.doctree │ │ ├── checkouts │ │ │ └── readthedocs.org │ │ │ │ └── user_builds │ │ │ │ └── iotdashboard │ │ │ │ └── checkouts │ │ │ │ └── latest │ │ │ │ └── docs │ │ │ │ └── index.doctree │ │ ├── environment.pickle │ │ ├── get.doctree │ │ ├── index.doctree │ │ └── post.doctree │ └── html │ │ ├── .buildinfo │ │ ├── _sources │ │ ├── api_docs.rst.txt │ │ ├── api_get.rst.txt │ │ ├── api_post.rst.txt │ │ ├── checkouts │ │ │ └── readthedocs.org │ │ │ │ └── user_builds │ │ │ │ └── iotdashboard │ │ │ │ └── checkouts │ │ │ │ └── latest │ │ │ │ └── docs │ │ │ │ └── index.rst.txt │ │ ├── get.rst.txt │ │ ├── index.rst.txt │ │ └── post.rst.txt │ │ ├── _static │ │ ├── _stemmer.js │ │ ├── ajax-loader.gif │ │ ├── alabaster.css │ │ ├── basic.css │ │ ├── comment-bright.png │ │ ├── comment-close.png │ │ ├── comment.png │ │ ├── custom.css │ │ ├── doctools.js │ │ ├── down-pressed.png │ │ ├── down.png │ │ ├── file.png │ │ ├── jquery-3.1.0.js │ │ ├── jquery.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── translations.js │ │ ├── underscore-1.3.1.js │ │ ├── underscore.js │ │ ├── up-pressed.png │ │ ├── up.png │ │ └── websupport.js │ │ ├── api_docs.html │ │ ├── api_get.html │ │ ├── api_post.html │ │ ├── checkouts │ │ └── readthedocs.org │ │ │ └── user_builds │ │ │ └── iotdashboard │ │ │ └── checkouts │ │ │ └── latest │ │ │ └── docs │ │ │ └── index.html │ │ ├── genindex.html │ │ ├── get.html │ │ ├── index.html │ │ ├── objects.inv │ │ ├── post.html │ │ ├── search.html │ │ └── searchindex.js ├── api_docs.rst ├── api_get.rst ├── api_post.rst ├── checkouts │ └── readthedocs.org │ │ └── user_builds │ │ └── iotdashboard │ │ └── checkouts │ │ └── latest │ │ └── docs │ │ └── index.rst ├── conf.py ├── example │ └── python │ │ └── post │ │ ├── iot_get.py │ │ ├── iot_get_detail.py │ │ └── iot_post.py ├── example_db │ └── iotdashboard_db.zip ├── fonts │ ├── copse-regular-webfont.eot │ ├── copse-regular-webfont.svg │ ├── copse-regular-webfont.ttf │ ├── copse-regular-webfont.woff │ ├── quattrocentosans-bold-webfont.eot │ ├── quattrocentosans-bold-webfont.svg │ ├── quattrocentosans-bold-webfont.ttf │ ├── quattrocentosans-bold-webfont.woff │ ├── quattrocentosans-bolditalic-webfont.eot │ ├── quattrocentosans-bolditalic-webfont.svg │ ├── quattrocentosans-bolditalic-webfont.ttf │ ├── quattrocentosans-bolditalic-webfont.woff │ ├── quattrocentosans-italic-webfont.eot │ ├── quattrocentosans-italic-webfont.svg │ ├── quattrocentosans-italic-webfont.ttf │ ├── quattrocentosans-italic-webfont.woff │ ├── quattrocentosans-regular-webfont.eot │ ├── quattrocentosans-regular-webfont.svg │ ├── quattrocentosans-regular-webfont.ttf │ └── quattrocentosans-regular-webfont.woff ├── get.rst ├── images │ ├── background.png │ ├── body-background.png │ ├── bullet.png │ ├── hr.gif │ └── octocat-logo.png ├── index.html ├── index.rst ├── javascripts │ └── main.js ├── make.bat ├── params.json ├── post.rst ├── privacy.html ├── stylesheets │ ├── github-dark.css │ ├── normalize.css │ └── styles.css └── terms.html ├── get-pip.py ├── index.rst ├── iotdashboard.png ├── iotdashboard.svg ├── iotdashboard.xlsx ├── iotdashboard ├── __init__.py ├── debug.py ├── settings.py ├── urls.py └── wsgi.py ├── iotdashboard_db.sqlite3 ├── iotdashboard_db.sqlite3_bak ├── local ├── locale ├── en │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po └── tr │ └── LC_MESSAGES │ ├── django.mo │ └── django.po ├── makehtml ├── manage.py ├── remove_migrations.py ├── requirements.txt ├── runtime.txt ├── setup.cfg ├── setup.py ├── static ├── back │ ├── assets │ │ ├── css │ │ │ └── ie10-viewport-bug-workaround.css │ │ └── js │ │ │ ├── html5shiv.min.js │ │ │ ├── ie-emulation-modes-warning.js │ │ │ ├── ie10-viewport-bug-workaround.js │ │ │ ├── ie8-responsive-file-warning.js │ │ │ ├── jquery.min.js │ │ │ ├── respond.min.js │ │ │ └── vendor │ │ │ └── holder.min.js │ ├── chart │ │ ├── home │ │ │ ├── css │ │ │ │ ├── 960.css │ │ │ │ ├── ie.css │ │ │ │ ├── project.css │ │ │ │ └── screen.css │ │ │ └── images │ │ │ │ ├── arrow.jpg │ │ │ │ ├── bg │ │ │ │ ├── baloon.gif │ │ │ │ ├── bg.gif │ │ │ │ ├── screen.png │ │ │ │ └── toolbar.gif │ │ │ │ ├── chartit.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── file.png │ │ │ │ └── wide_light_border.jpg │ │ ├── js │ │ │ ├── demo │ │ │ │ ├── doctools.js │ │ │ │ └── underscore.js │ │ │ └── highcharts │ │ │ │ ├── highcharts.js │ │ │ │ └── themes │ │ │ │ ├── dark-blue.js │ │ │ │ ├── dark-green.js │ │ │ │ ├── default.js │ │ │ │ ├── gray.js │ │ │ │ └── grid.js │ │ └── styles │ │ │ ├── basic.css │ │ │ └── nature.css │ ├── dashboard │ │ ├── dashboard.css │ │ ├── img │ │ │ ├── channel-256.png │ │ │ ├── cloud-256.png │ │ │ ├── element-256.png │ │ │ └── key-256.png │ │ ├── js │ │ │ └── tooltip-viewport.js │ │ └── sticky-footer.css │ ├── dist │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ ├── graph │ │ ├── WebSocketMain.swf │ │ ├── css │ │ │ └── style.css │ │ ├── excanvas.js │ │ ├── jquery-1.6.1.min.js │ │ ├── jquery.flot.js │ │ └── socket.io.js │ └── gstatic │ │ └── loader.js ├── favicon.ico └── front │ ├── css │ ├── bootstrap.css │ ├── popuo-box.css │ └── style.css │ ├── fonts │ ├── FreeSans.ttf │ ├── FreeSansBold.ttf │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 │ ├── images │ ├── 1.jpg │ ├── 1.png │ ├── 1.psd │ ├── 10.png │ ├── 11.jpg │ ├── 11.png │ ├── 2.jpg │ ├── 2.png │ ├── 3.jpg │ ├── 3.png │ ├── 4.jpg │ ├── 4.png │ ├── 5.jpg │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── Thumbs.db │ ├── Untitled-500x210.xcf │ ├── android.jpeg │ ├── android.png │ ├── arr.png │ ├── arrow.png │ ├── backward.png │ ├── banner-1.jpg │ ├── banner-1.xcf │ ├── banner-2.jpg │ ├── banner.jpg │ ├── crunch-1.png │ ├── crunch.png │ ├── dollor.png │ ├── face.png │ ├── face1.png │ ├── facebook.png │ ├── facebook1.png │ ├── footer-logo.png │ ├── hover.png │ ├── ihook-100x50.png │ ├── ihook-100x50.xcf │ ├── ihook-logo-1.png │ ├── ihook-logo-3.png │ ├── ihook-logo-4.png │ ├── ihook-logo.png │ ├── img-sprite.png │ ├── in.png │ ├── in1.png │ ├── in2.png │ ├── in3.png │ ├── ios.jpg │ ├── iot.png │ ├── iotdashboard.png │ ├── iothook-bg1.jpg │ ├── iothook-bg1.xcf │ ├── iothook-bg2.jpg │ ├── iothook-bg2.xcf │ ├── line.png │ ├── logo.png │ ├── logo.xcf │ ├── menu.png │ ├── micro-1.png │ ├── micro.png │ ├── pagenate.png │ ├── ph.png │ ├── plus.png │ ├── refresh.png │ ├── refresh1.png │ ├── row.png │ ├── sp.png │ ├── spoti-1.png │ ├── spoti.png │ ├── sprite.png │ ├── twi.png │ ├── twi1.png │ ├── twitter-1.png │ ├── twitter-logo.png │ ├── twitter.png │ ├── twitter1.png │ └── zoom.png │ └── js │ ├── easing.js │ ├── jquery-1.11.0.min.js │ ├── jquery.magnific-popup.js │ ├── jquery.min.js │ ├── jquery.mixitup.min.js │ ├── modernizr.custom.min.js │ ├── move-top.js │ └── responsiveslides.min.js └── templates ├── admin └── base_site.html ├── back ├── add.html ├── base.html ├── chart_view.html ├── chart_view_realtime.html ├── chart_view_realtime_1.html ├── data_chart.html ├── data_list.html ├── device_list.html ├── footer.html ├── graph │ └── graph.html ├── index.html ├── js.html ├── key_list.html ├── navbar.html └── sidebar.html └── rest_framework └── base.html /.gitattributes: -------------------------------------------------------------------------------- 1 | *.py linguist-language=Python 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn iotdashboard.wsgi --preload --log-file - -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/README.txt -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | - ? -------------------------------------------------------------------------------- /blob/master/docs/index.rst: -------------------------------------------------------------------------------- 1 | IOT Dashboard 2 | 3 | http://iothook.com 4 | -------------------------------------------------------------------------------- /datas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datas/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/datas/admin.py -------------------------------------------------------------------------------- /datas/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/datas/apps.py -------------------------------------------------------------------------------- /datas/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/datas/models.py -------------------------------------------------------------------------------- /datas/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/datas/serializers.py -------------------------------------------------------------------------------- /datas/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/datas/tests.py -------------------------------------------------------------------------------- /datas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/datas/views.py -------------------------------------------------------------------------------- /devices/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devices/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/devices/admin.py -------------------------------------------------------------------------------- /devices/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/devices/apps.py -------------------------------------------------------------------------------- /devices/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/devices/forms.py -------------------------------------------------------------------------------- /devices/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/devices/models.py -------------------------------------------------------------------------------- /devices/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devices/templatetags/custom_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/devices/templatetags/custom_tags.py -------------------------------------------------------------------------------- /devices/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/devices/tests.py -------------------------------------------------------------------------------- /devices/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/devices/views.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/README.txt -------------------------------------------------------------------------------- /docs/_build/doctrees/api_docs.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/doctrees/api_docs.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/api_get.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/doctrees/api_get.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/api_post.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/doctrees/api_post.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/checkouts/readthedocs.org/user_builds/iotdashboard/checkouts/latest/docs/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/doctrees/checkouts/readthedocs.org/user_builds/iotdashboard/checkouts/latest/docs/index.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/_build/doctrees/get.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/doctrees/get.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/doctrees/index.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/post.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/doctrees/post.doctree -------------------------------------------------------------------------------- /docs/_build/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/.buildinfo -------------------------------------------------------------------------------- /docs/_build/html/_sources/api_docs.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/_sources/api_docs.rst.txt -------------------------------------------------------------------------------- /docs/_build/html/_sources/api_get.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/_sources/api_get.rst.txt -------------------------------------------------------------------------------- /docs/_build/html/_sources/api_post.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/_sources/api_post.rst.txt -------------------------------------------------------------------------------- /docs/_build/html/_sources/checkouts/readthedocs.org/user_builds/iotdashboard/checkouts/latest/docs/index.rst.txt: -------------------------------------------------------------------------------- 1 | index.rst -------------------------------------------------------------------------------- /docs/_build/html/_sources/get.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/_sources/get.rst.txt -------------------------------------------------------------------------------- /docs/_build/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/_build/html/_sources/post.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/_sources/post.rst.txt -------------------------------------------------------------------------------- /docs/_build/html/_static/_stemmer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/_static/_stemmer.js -------------------------------------------------------------------------------- /docs/_build/html/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/_static/ajax-loader.gif -------------------------------------------------------------------------------- /docs/_build/html/_static/alabaster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/_static/alabaster.css -------------------------------------------------------------------------------- /docs/_build/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/_static/basic.css -------------------------------------------------------------------------------- /docs/_build/html/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/_static/comment-bright.png -------------------------------------------------------------------------------- /docs/_build/html/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/_static/comment-close.png -------------------------------------------------------------------------------- /docs/_build/html/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/_static/comment.png -------------------------------------------------------------------------------- /docs/_build/html/_static/custom.css: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /docs/_build/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/_build/html/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/_static/down-pressed.png -------------------------------------------------------------------------------- /docs/_build/html/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/_static/down.png -------------------------------------------------------------------------------- /docs/_build/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/_static/file.png -------------------------------------------------------------------------------- /docs/_build/html/_static/jquery-3.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/_static/jquery-3.1.0.js -------------------------------------------------------------------------------- /docs/_build/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/_static/jquery.js -------------------------------------------------------------------------------- /docs/_build/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/_static/minus.png -------------------------------------------------------------------------------- /docs/_build/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/_static/plus.png -------------------------------------------------------------------------------- /docs/_build/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/_build/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/_build/html/_static/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/_static/translations.js -------------------------------------------------------------------------------- /docs/_build/html/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/_build/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/_static/underscore.js -------------------------------------------------------------------------------- /docs/_build/html/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/_static/up-pressed.png -------------------------------------------------------------------------------- /docs/_build/html/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/_static/up.png -------------------------------------------------------------------------------- /docs/_build/html/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/_static/websupport.js -------------------------------------------------------------------------------- /docs/_build/html/api_docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/api_docs.html -------------------------------------------------------------------------------- /docs/_build/html/api_get.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/api_get.html -------------------------------------------------------------------------------- /docs/_build/html/api_post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/api_post.html -------------------------------------------------------------------------------- /docs/_build/html/checkouts/readthedocs.org/user_builds/iotdashboard/checkouts/latest/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/checkouts/readthedocs.org/user_builds/iotdashboard/checkouts/latest/docs/index.html -------------------------------------------------------------------------------- /docs/_build/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/genindex.html -------------------------------------------------------------------------------- /docs/_build/html/get.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/get.html -------------------------------------------------------------------------------- /docs/_build/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/index.html -------------------------------------------------------------------------------- /docs/_build/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/objects.inv -------------------------------------------------------------------------------- /docs/_build/html/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/post.html -------------------------------------------------------------------------------- /docs/_build/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/search.html -------------------------------------------------------------------------------- /docs/_build/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/_build/html/searchindex.js -------------------------------------------------------------------------------- /docs/api_docs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/api_docs.rst -------------------------------------------------------------------------------- /docs/api_get.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/api_get.rst -------------------------------------------------------------------------------- /docs/api_post.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/api_post.rst -------------------------------------------------------------------------------- /docs/checkouts/readthedocs.org/user_builds/iotdashboard/checkouts/latest/docs/index.rst: -------------------------------------------------------------------------------- 1 | index.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/example/python/post/iot_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/example/python/post/iot_get.py -------------------------------------------------------------------------------- /docs/example/python/post/iot_get_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/example/python/post/iot_get_detail.py -------------------------------------------------------------------------------- /docs/example/python/post/iot_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/example/python/post/iot_post.py -------------------------------------------------------------------------------- /docs/example_db/iotdashboard_db.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/example_db/iotdashboard_db.zip -------------------------------------------------------------------------------- /docs/fonts/copse-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/fonts/copse-regular-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/copse-regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/fonts/copse-regular-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/copse-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/fonts/copse-regular-webfont.ttf -------------------------------------------------------------------------------- /docs/fonts/copse-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/fonts/copse-regular-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/quattrocentosans-bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/fonts/quattrocentosans-bold-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/quattrocentosans-bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/fonts/quattrocentosans-bold-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/quattrocentosans-bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/fonts/quattrocentosans-bold-webfont.ttf -------------------------------------------------------------------------------- /docs/fonts/quattrocentosans-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/fonts/quattrocentosans-bold-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/quattrocentosans-bolditalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/fonts/quattrocentosans-bolditalic-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/quattrocentosans-bolditalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/fonts/quattrocentosans-bolditalic-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/quattrocentosans-bolditalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/fonts/quattrocentosans-bolditalic-webfont.ttf -------------------------------------------------------------------------------- /docs/fonts/quattrocentosans-bolditalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/fonts/quattrocentosans-bolditalic-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/quattrocentosans-italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/fonts/quattrocentosans-italic-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/quattrocentosans-italic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/fonts/quattrocentosans-italic-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/quattrocentosans-italic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/fonts/quattrocentosans-italic-webfont.ttf -------------------------------------------------------------------------------- /docs/fonts/quattrocentosans-italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/fonts/quattrocentosans-italic-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/quattrocentosans-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/fonts/quattrocentosans-regular-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/quattrocentosans-regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/fonts/quattrocentosans-regular-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/quattrocentosans-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/fonts/quattrocentosans-regular-webfont.ttf -------------------------------------------------------------------------------- /docs/fonts/quattrocentosans-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/fonts/quattrocentosans-regular-webfont.woff -------------------------------------------------------------------------------- /docs/get.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/get.rst -------------------------------------------------------------------------------- /docs/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/images/background.png -------------------------------------------------------------------------------- /docs/images/body-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/images/body-background.png -------------------------------------------------------------------------------- /docs/images/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/images/bullet.png -------------------------------------------------------------------------------- /docs/images/hr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/images/hr.gif -------------------------------------------------------------------------------- /docs/images/octocat-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/images/octocat-logo.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/javascripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/javascripts/main.js -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/params.json -------------------------------------------------------------------------------- /docs/post.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/post.rst -------------------------------------------------------------------------------- /docs/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/privacy.html -------------------------------------------------------------------------------- /docs/stylesheets/github-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/stylesheets/github-dark.css -------------------------------------------------------------------------------- /docs/stylesheets/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/stylesheets/normalize.css -------------------------------------------------------------------------------- /docs/stylesheets/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/stylesheets/styles.css -------------------------------------------------------------------------------- /docs/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/docs/terms.html -------------------------------------------------------------------------------- /get-pip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/get-pip.py -------------------------------------------------------------------------------- /index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/index.rst -------------------------------------------------------------------------------- /iotdashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/iotdashboard.png -------------------------------------------------------------------------------- /iotdashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/iotdashboard.svg -------------------------------------------------------------------------------- /iotdashboard.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/iotdashboard.xlsx -------------------------------------------------------------------------------- /iotdashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iotdashboard/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/iotdashboard/debug.py -------------------------------------------------------------------------------- /iotdashboard/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/iotdashboard/settings.py -------------------------------------------------------------------------------- /iotdashboard/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/iotdashboard/urls.py -------------------------------------------------------------------------------- /iotdashboard/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/iotdashboard/wsgi.py -------------------------------------------------------------------------------- /iotdashboard_db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/iotdashboard_db.sqlite3 -------------------------------------------------------------------------------- /iotdashboard_db.sqlite3_bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/iotdashboard_db.sqlite3_bak -------------------------------------------------------------------------------- /local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/local -------------------------------------------------------------------------------- /locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/tr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/locale/tr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/tr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/locale/tr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /makehtml: -------------------------------------------------------------------------------- 1 | cd docs/ 2 | make html 3 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/manage.py -------------------------------------------------------------------------------- /remove_migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/remove_migrations.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.1 2 | iotdashboard/settings.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/setup.py -------------------------------------------------------------------------------- /static/back/assets/css/ie10-viewport-bug-workaround.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/assets/css/ie10-viewport-bug-workaround.css -------------------------------------------------------------------------------- /static/back/assets/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/assets/js/html5shiv.min.js -------------------------------------------------------------------------------- /static/back/assets/js/ie-emulation-modes-warning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/assets/js/ie-emulation-modes-warning.js -------------------------------------------------------------------------------- /static/back/assets/js/ie10-viewport-bug-workaround.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/assets/js/ie10-viewport-bug-workaround.js -------------------------------------------------------------------------------- /static/back/assets/js/ie8-responsive-file-warning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/assets/js/ie8-responsive-file-warning.js -------------------------------------------------------------------------------- /static/back/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/assets/js/jquery.min.js -------------------------------------------------------------------------------- /static/back/assets/js/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/assets/js/respond.min.js -------------------------------------------------------------------------------- /static/back/assets/js/vendor/holder.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/assets/js/vendor/holder.min.js -------------------------------------------------------------------------------- /static/back/chart/home/css/960.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/chart/home/css/960.css -------------------------------------------------------------------------------- /static/back/chart/home/css/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/chart/home/css/ie.css -------------------------------------------------------------------------------- /static/back/chart/home/css/project.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/chart/home/css/project.css -------------------------------------------------------------------------------- /static/back/chart/home/css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/chart/home/css/screen.css -------------------------------------------------------------------------------- /static/back/chart/home/images/arrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/chart/home/images/arrow.jpg -------------------------------------------------------------------------------- /static/back/chart/home/images/bg/baloon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/chart/home/images/bg/baloon.gif -------------------------------------------------------------------------------- /static/back/chart/home/images/bg/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/chart/home/images/bg/bg.gif -------------------------------------------------------------------------------- /static/back/chart/home/images/bg/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/chart/home/images/bg/screen.png -------------------------------------------------------------------------------- /static/back/chart/home/images/bg/toolbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/chart/home/images/bg/toolbar.gif -------------------------------------------------------------------------------- /static/back/chart/home/images/chartit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/chart/home/images/chartit.png -------------------------------------------------------------------------------- /static/back/chart/home/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/chart/home/images/favicon.ico -------------------------------------------------------------------------------- /static/back/chart/home/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/chart/home/images/file.png -------------------------------------------------------------------------------- /static/back/chart/home/images/wide_light_border.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/chart/home/images/wide_light_border.jpg -------------------------------------------------------------------------------- /static/back/chart/js/demo/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/chart/js/demo/doctools.js -------------------------------------------------------------------------------- /static/back/chart/js/demo/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/chart/js/demo/underscore.js -------------------------------------------------------------------------------- /static/back/chart/js/highcharts/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/chart/js/highcharts/highcharts.js -------------------------------------------------------------------------------- /static/back/chart/js/highcharts/themes/dark-blue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/chart/js/highcharts/themes/dark-blue.js -------------------------------------------------------------------------------- /static/back/chart/js/highcharts/themes/dark-green.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/chart/js/highcharts/themes/dark-green.js -------------------------------------------------------------------------------- /static/back/chart/js/highcharts/themes/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/chart/js/highcharts/themes/default.js -------------------------------------------------------------------------------- /static/back/chart/js/highcharts/themes/gray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/chart/js/highcharts/themes/gray.js -------------------------------------------------------------------------------- /static/back/chart/js/highcharts/themes/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/chart/js/highcharts/themes/grid.js -------------------------------------------------------------------------------- /static/back/chart/styles/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/chart/styles/basic.css -------------------------------------------------------------------------------- /static/back/chart/styles/nature.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/chart/styles/nature.css -------------------------------------------------------------------------------- /static/back/dashboard/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/dashboard/dashboard.css -------------------------------------------------------------------------------- /static/back/dashboard/img/channel-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/dashboard/img/channel-256.png -------------------------------------------------------------------------------- /static/back/dashboard/img/cloud-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/dashboard/img/cloud-256.png -------------------------------------------------------------------------------- /static/back/dashboard/img/element-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/dashboard/img/element-256.png -------------------------------------------------------------------------------- /static/back/dashboard/img/key-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/dashboard/img/key-256.png -------------------------------------------------------------------------------- /static/back/dashboard/js/tooltip-viewport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/dashboard/js/tooltip-viewport.js -------------------------------------------------------------------------------- /static/back/dashboard/sticky-footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/dashboard/sticky-footer.css -------------------------------------------------------------------------------- /static/back/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /static/back/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /static/back/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /static/back/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /static/back/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/dist/css/bootstrap.css -------------------------------------------------------------------------------- /static/back/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/back/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/back/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /static/back/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/back/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/back/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/back/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/back/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/back/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/dist/js/bootstrap.js -------------------------------------------------------------------------------- /static/back/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/back/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/dist/js/npm.js -------------------------------------------------------------------------------- /static/back/graph/WebSocketMain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/graph/WebSocketMain.swf -------------------------------------------------------------------------------- /static/back/graph/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/graph/css/style.css -------------------------------------------------------------------------------- /static/back/graph/excanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/graph/excanvas.js -------------------------------------------------------------------------------- /static/back/graph/jquery-1.6.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/graph/jquery-1.6.1.min.js -------------------------------------------------------------------------------- /static/back/graph/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/graph/jquery.flot.js -------------------------------------------------------------------------------- /static/back/graph/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/graph/socket.io.js -------------------------------------------------------------------------------- /static/back/gstatic/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/back/gstatic/loader.js -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/front/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/css/bootstrap.css -------------------------------------------------------------------------------- /static/front/css/popuo-box.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/css/popuo-box.css -------------------------------------------------------------------------------- /static/front/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/css/style.css -------------------------------------------------------------------------------- /static/front/fonts/FreeSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/fonts/FreeSans.ttf -------------------------------------------------------------------------------- /static/front/fonts/FreeSansBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/fonts/FreeSansBold.ttf -------------------------------------------------------------------------------- /static/front/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/front/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/front/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/front/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/front/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/front/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/1.jpg -------------------------------------------------------------------------------- /static/front/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/1.png -------------------------------------------------------------------------------- /static/front/images/1.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/1.psd -------------------------------------------------------------------------------- /static/front/images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/10.png -------------------------------------------------------------------------------- /static/front/images/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/11.jpg -------------------------------------------------------------------------------- /static/front/images/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/11.png -------------------------------------------------------------------------------- /static/front/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/2.jpg -------------------------------------------------------------------------------- /static/front/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/2.png -------------------------------------------------------------------------------- /static/front/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/3.jpg -------------------------------------------------------------------------------- /static/front/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/3.png -------------------------------------------------------------------------------- /static/front/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/4.jpg -------------------------------------------------------------------------------- /static/front/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/4.png -------------------------------------------------------------------------------- /static/front/images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/5.jpg -------------------------------------------------------------------------------- /static/front/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/5.png -------------------------------------------------------------------------------- /static/front/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/6.png -------------------------------------------------------------------------------- /static/front/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/7.png -------------------------------------------------------------------------------- /static/front/images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/8.png -------------------------------------------------------------------------------- /static/front/images/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/9.png -------------------------------------------------------------------------------- /static/front/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/Thumbs.db -------------------------------------------------------------------------------- /static/front/images/Untitled-500x210.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/Untitled-500x210.xcf -------------------------------------------------------------------------------- /static/front/images/android.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/android.jpeg -------------------------------------------------------------------------------- /static/front/images/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/android.png -------------------------------------------------------------------------------- /static/front/images/arr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/arr.png -------------------------------------------------------------------------------- /static/front/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/arrow.png -------------------------------------------------------------------------------- /static/front/images/backward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/backward.png -------------------------------------------------------------------------------- /static/front/images/banner-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/banner-1.jpg -------------------------------------------------------------------------------- /static/front/images/banner-1.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/banner-1.xcf -------------------------------------------------------------------------------- /static/front/images/banner-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/banner-2.jpg -------------------------------------------------------------------------------- /static/front/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/banner.jpg -------------------------------------------------------------------------------- /static/front/images/crunch-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/crunch-1.png -------------------------------------------------------------------------------- /static/front/images/crunch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/crunch.png -------------------------------------------------------------------------------- /static/front/images/dollor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/dollor.png -------------------------------------------------------------------------------- /static/front/images/face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/face.png -------------------------------------------------------------------------------- /static/front/images/face1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/face1.png -------------------------------------------------------------------------------- /static/front/images/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/facebook.png -------------------------------------------------------------------------------- /static/front/images/facebook1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/facebook1.png -------------------------------------------------------------------------------- /static/front/images/footer-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/footer-logo.png -------------------------------------------------------------------------------- /static/front/images/hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/hover.png -------------------------------------------------------------------------------- /static/front/images/ihook-100x50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/ihook-100x50.png -------------------------------------------------------------------------------- /static/front/images/ihook-100x50.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/ihook-100x50.xcf -------------------------------------------------------------------------------- /static/front/images/ihook-logo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/ihook-logo-1.png -------------------------------------------------------------------------------- /static/front/images/ihook-logo-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/ihook-logo-3.png -------------------------------------------------------------------------------- /static/front/images/ihook-logo-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/ihook-logo-4.png -------------------------------------------------------------------------------- /static/front/images/ihook-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/ihook-logo.png -------------------------------------------------------------------------------- /static/front/images/img-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/img-sprite.png -------------------------------------------------------------------------------- /static/front/images/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/in.png -------------------------------------------------------------------------------- /static/front/images/in1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/in1.png -------------------------------------------------------------------------------- /static/front/images/in2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/in2.png -------------------------------------------------------------------------------- /static/front/images/in3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/in3.png -------------------------------------------------------------------------------- /static/front/images/ios.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/ios.jpg -------------------------------------------------------------------------------- /static/front/images/iot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/iot.png -------------------------------------------------------------------------------- /static/front/images/iotdashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/iotdashboard.png -------------------------------------------------------------------------------- /static/front/images/iothook-bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/iothook-bg1.jpg -------------------------------------------------------------------------------- /static/front/images/iothook-bg1.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/iothook-bg1.xcf -------------------------------------------------------------------------------- /static/front/images/iothook-bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/iothook-bg2.jpg -------------------------------------------------------------------------------- /static/front/images/iothook-bg2.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/iothook-bg2.xcf -------------------------------------------------------------------------------- /static/front/images/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/line.png -------------------------------------------------------------------------------- /static/front/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/logo.png -------------------------------------------------------------------------------- /static/front/images/logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/logo.xcf -------------------------------------------------------------------------------- /static/front/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/menu.png -------------------------------------------------------------------------------- /static/front/images/micro-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/micro-1.png -------------------------------------------------------------------------------- /static/front/images/micro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/micro.png -------------------------------------------------------------------------------- /static/front/images/pagenate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/pagenate.png -------------------------------------------------------------------------------- /static/front/images/ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/ph.png -------------------------------------------------------------------------------- /static/front/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/plus.png -------------------------------------------------------------------------------- /static/front/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/refresh.png -------------------------------------------------------------------------------- /static/front/images/refresh1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/refresh1.png -------------------------------------------------------------------------------- /static/front/images/row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/row.png -------------------------------------------------------------------------------- /static/front/images/sp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/sp.png -------------------------------------------------------------------------------- /static/front/images/spoti-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/spoti-1.png -------------------------------------------------------------------------------- /static/front/images/spoti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/spoti.png -------------------------------------------------------------------------------- /static/front/images/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/sprite.png -------------------------------------------------------------------------------- /static/front/images/twi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/twi.png -------------------------------------------------------------------------------- /static/front/images/twi1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/twi1.png -------------------------------------------------------------------------------- /static/front/images/twitter-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/twitter-1.png -------------------------------------------------------------------------------- /static/front/images/twitter-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/twitter-logo.png -------------------------------------------------------------------------------- /static/front/images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/twitter.png -------------------------------------------------------------------------------- /static/front/images/twitter1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/twitter1.png -------------------------------------------------------------------------------- /static/front/images/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/images/zoom.png -------------------------------------------------------------------------------- /static/front/js/easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/js/easing.js -------------------------------------------------------------------------------- /static/front/js/jquery-1.11.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/js/jquery-1.11.0.min.js -------------------------------------------------------------------------------- /static/front/js/jquery.magnific-popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/js/jquery.magnific-popup.js -------------------------------------------------------------------------------- /static/front/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/js/jquery.min.js -------------------------------------------------------------------------------- /static/front/js/jquery.mixitup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/js/jquery.mixitup.min.js -------------------------------------------------------------------------------- /static/front/js/modernizr.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/js/modernizr.custom.min.js -------------------------------------------------------------------------------- /static/front/js/move-top.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/js/move-top.js -------------------------------------------------------------------------------- /static/front/js/responsiveslides.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/static/front/js/responsiveslides.min.js -------------------------------------------------------------------------------- /templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/templates/admin/base_site.html -------------------------------------------------------------------------------- /templates/back/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/templates/back/add.html -------------------------------------------------------------------------------- /templates/back/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/templates/back/base.html -------------------------------------------------------------------------------- /templates/back/chart_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/templates/back/chart_view.html -------------------------------------------------------------------------------- /templates/back/chart_view_realtime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/templates/back/chart_view_realtime.html -------------------------------------------------------------------------------- /templates/back/chart_view_realtime_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/templates/back/chart_view_realtime_1.html -------------------------------------------------------------------------------- /templates/back/data_chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/templates/back/data_chart.html -------------------------------------------------------------------------------- /templates/back/data_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/templates/back/data_list.html -------------------------------------------------------------------------------- /templates/back/device_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/templates/back/device_list.html -------------------------------------------------------------------------------- /templates/back/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/templates/back/footer.html -------------------------------------------------------------------------------- /templates/back/graph/graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/templates/back/graph/graph.html -------------------------------------------------------------------------------- /templates/back/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/templates/back/index.html -------------------------------------------------------------------------------- /templates/back/js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/templates/back/js.html -------------------------------------------------------------------------------- /templates/back/key_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/templates/back/key_list.html -------------------------------------------------------------------------------- /templates/back/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/templates/back/navbar.html -------------------------------------------------------------------------------- /templates/back/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/templates/back/sidebar.html -------------------------------------------------------------------------------- /templates/rest_framework/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electrocoder/iotdashboard/HEAD/templates/rest_framework/base.html --------------------------------------------------------------------------------