├── .gitignore ├── README.md ├── djangosite ├── __init__.py ├── settings.py ├── static │ ├── components │ │ ├── App.jsx │ │ └── Search.jsx │ ├── style.css │ └── vendor │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── 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 │ │ └── react │ │ └── react-0.13.1.js ├── templates │ └── index.html ├── urls.py └── views.py ├── host.config.js ├── manage.py ├── package.json └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanistheone/djangoiso/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanistheone/djangoiso/HEAD/README.md -------------------------------------------------------------------------------- /djangosite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanistheone/djangoiso/HEAD/djangosite/settings.py -------------------------------------------------------------------------------- /djangosite/static/components/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanistheone/djangoiso/HEAD/djangosite/static/components/App.jsx -------------------------------------------------------------------------------- /djangosite/static/components/Search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanistheone/djangoiso/HEAD/djangosite/static/components/Search.jsx -------------------------------------------------------------------------------- /djangosite/static/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding: 50px; 3 | font: 14px "Lucida Grande", Helvetica, Arial, sans-serif; 4 | } 5 | -------------------------------------------------------------------------------- /djangosite/static/vendor/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanistheone/djangoiso/HEAD/djangosite/static/vendor/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /djangosite/static/vendor/bootstrap/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanistheone/djangoiso/HEAD/djangosite/static/vendor/bootstrap/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /djangosite/static/vendor/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanistheone/djangoiso/HEAD/djangosite/static/vendor/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /djangosite/static/vendor/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanistheone/djangoiso/HEAD/djangosite/static/vendor/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /djangosite/static/vendor/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanistheone/djangoiso/HEAD/djangosite/static/vendor/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /djangosite/static/vendor/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanistheone/djangoiso/HEAD/djangosite/static/vendor/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /djangosite/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanistheone/djangoiso/HEAD/djangosite/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /djangosite/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanistheone/djangoiso/HEAD/djangosite/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /djangosite/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanistheone/djangoiso/HEAD/djangosite/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /djangosite/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanistheone/djangoiso/HEAD/djangosite/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /djangosite/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanistheone/djangoiso/HEAD/djangosite/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /djangosite/static/vendor/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanistheone/djangoiso/HEAD/djangosite/static/vendor/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /djangosite/static/vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanistheone/djangoiso/HEAD/djangosite/static/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /djangosite/static/vendor/bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanistheone/djangoiso/HEAD/djangosite/static/vendor/bootstrap/js/npm.js -------------------------------------------------------------------------------- /djangosite/static/vendor/react/react-0.13.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanistheone/djangoiso/HEAD/djangosite/static/vendor/react/react-0.13.1.js -------------------------------------------------------------------------------- /djangosite/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanistheone/djangoiso/HEAD/djangosite/templates/index.html -------------------------------------------------------------------------------- /djangosite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanistheone/djangoiso/HEAD/djangosite/urls.py -------------------------------------------------------------------------------- /djangosite/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanistheone/djangoiso/HEAD/djangosite/views.py -------------------------------------------------------------------------------- /host.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanistheone/djangoiso/HEAD/host.config.js -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanistheone/djangoiso/HEAD/manage.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanistheone/djangoiso/HEAD/package.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | django 2 | js-host 3 | react --------------------------------------------------------------------------------