Monday, May 4, 2015

Re: Deploying django

I get it, I did use the collectstatic command, although I believe my static files aren't properly set-up. I have the following structure (my templates are outside the static folder):



├── costum
├── manage.py
├── psi
│   ├── __init__.py
│   ├── __init__.pyc
│   ├── middlewares.py
│   ├── middlewares.pyc
│   ├── __pycache__
│   │   ├── __init__.cpython-34.pyc
│   │   ├── middlewares.cpython-34.pyc
│   │   ├── settings.cpython-34.pyc
│   │   ├── urls.cpython-34.pyc
│   │   └── wsgi.cpython-34.pyc
│   ├── settings.py
│   ├── settings.pyc
│   ├── urls.py
│   ├── urls.pyc
│   ├── wsgi.py
│   └── wsgi.pyc
├── static
│   ├── bower_components
│   │   ├── bootstrap
│   │   │   ├── bower.json
│   │   │   ├── dist
│   │   │   │   ├── css
│   │   │   │   │   ├── bootstrap.css
│   │   │   │   │   ├── bootstrap.css.map
│   │   │   │   │   ├── bootstrap.min.css
│   │   │   │   │   ├── bootstrap-theme.css
│   │   │   │   │   ├── bootstrap-theme.css.map
│   │   │   │   │   └── bootstrap-theme.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
│   │   │   ├── fonts
│   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   │   └── glyphicons-halflings-regular.woff2
│   │   │   ├── grunt
│   │   │   │   ├── bs-commonjs-generator.js
│   │   │   │   ├── bs-glyphicons-data-generator.js
│   │   │   │   ├── bs-lessdoc-parser.js
│   │   │   │   ├── bs-raw-files-generator.js
│   │   │   │   ├── configBridge.json
│   │   │   │   └── sauce_browsers.yml
│   │   │   ├── Gruntfile.js
│   │   │   ├── js
│   │   │   │   ├── affix.js
│   │   │   │   ├── alert.js
│   │   │   │   ├── button.js
│   │   │   │   ├── carousel.js
│   │   │   │   ├── collapse.js
│   │   │   │   ├── dropdown.js
│   │   │   │   ├── modal.js
│   │   │   │   ├── popover.js
│   │   │   │   ├── scrollspy.js
│   │   │   │   ├── tab.js
│   │   │   │   ├── tooltip.js
│   │   │   │   └── transition.js
│   │   │   ├── less
│   │   │   │   ├── alerts.less
│   │   │   │   ├── badges.less
│   │   │   │   ├── bootstrap.less
│   │   │   │   ├── breadcrumbs.less
│   │   │   │   ├── button-groups.less
│   │   │   │   ├── buttons.less
│   │   │   │   ├── carousel.less
│   │   │   │   ├── close.less
│   │   │   │   ├── code.less
│   │   │   │   ├── component-animations.less
│   │   │   │   ├── dropdowns.less
│   │   │   │   ├── forms.less
│   │   │   │   ├── glyphicons.less
│   │   │   │   ├── grid.less
│   │   │   │   ├── input-groups.less
│   │   │   │   ├── jumbotron.less
│   │   │   │   ├── labels.less
│   │   │   │   ├── list-group.less
│   │   │   │   ├── media.less
│   │   │   │   ├── mixins
│   │   │   │   │   ├── alerts.less
│   │   │   │   │   ├── background-variant.less
│   │   │   │   │   ├── border-radius.less
│   │   │   │   │   ├── buttons.less
│   │   │   │   │   ├── center-block.less
│   │   │   │   │   ├── clearfix.less
│   │   │   │   │   ├── forms.less
│   │   │   │   │   ├── gradients.less
│   │   │   │   │   ├── grid-framework.less
│   │   │   │   │   ├── grid.less
│   │   │   │   │   ├── hide-text.less
│   │   │   │   │   ├── image.less
│   │   │   │   │   ├── labels.less
│   │   │   │   │   ├── list-group.less
│   │   │   │   │   ├── nav-divider.less
│   │   │   │   │   ├── nav-vertical-align.less
│   │   │   │   │   ├── opacity.less
│   │   │   │   │   ├── pagination.less
│   │   │   │   │   ├── panels.less
│   │   │   │   │   ├── progress-bar.less
│   │   │   │   │   ├── reset-filter.less
│   │   │   │   │   ├── resize.less
│   │   │   │   │   ├── responsive-visibility.less
│   │   │   │   │   ├── size.less
│   │   │   │   │   ├── tab-focus.less
│   │   │   │   │   ├── table-row.less
│   │   │   │   │   ├── text-emphasis.less
│   │   │   │   │   ├── text-overflow.less
│   │   │   │   │   └── vendor-prefixes.less
│   │   │   │   ├── mixins.less
│   │   │   │   ├── modals.less
│   │   │   │   ├── navbar.less
│   │   │   │   ├── navs.less
│   │   │   │   ├── normalize.less
│   │   │   │   ├── pager.less
│   │   │   │   ├── pagination.less
│   │   │   │   ├── panels.less
│   │   │   │   ├── popovers.less
│   │   │   │   ├── print.less
│   │   │   │   ├── progress-bars.less
│   │   │   │   ├── responsive-embed.less
│   │   │   │   ├── responsive-utilities.less
│   │   │   │   ├── scaffolding.less
│   │   │   │   ├── tables.less
│   │   │   │   ├── theme.less
│   │   │   │   ├── thumbnails.less
│   │   │   │   ├── tooltip.less
│   │   │   │   ├── type.less
│   │   │   │   ├── utilities.less
│   │   │   │   ├── variables.less
│   │   │   │   └── wells.less
│   │   │   ├── LICENSE
│   │   │   ├── package.json
│   │   │   └── README.md
│   │   ├── bootstrap-social
│   │   │   ├── bootstrap-social.css
│   │   │   ├── bootstrap-social.less
│   │   │   ├── bootstrap-social.scss
│   │   │   ├── bower.json
│   │   │   └── README.md
│   │   ├── css
│   │   │   └── costum.css
│   │   ├── datatables
│   │   │   ├── bower.json
│   │   │   ├── Contributing.md
│   │   │   ├── license.txt
│   │   │   ├── media
│   │   │   │   ├── css
│   │   │   │   │   ├── jquery.dataTables.css
│   │   │   │   │   ├── jquery.dataTables.min.css
│   │   │   │   │   └── jquery.dataTables_themeroller.css
│   │   │   │   ├── images
│   │   │   │   │   ├── back_disabled.png
│   │   │   │   │   ├── back_enabled_hover.png
│   │   │   │   │   ├── back_enabled.png
│   │   │   │   │   ├── favicon.ico
│   │   │   │   │   ├── forward_disabled.png
│   │   │   │   │   ├── forward_enabled_hover.png
│   │   │   │   │   ├── forward_enabled.png
│   │   │   │   │   ├── sort_asc_disabled.png
│   │   │   │   │   ├── sort_asc.png
│   │   │   │   │   ├── sort_both.png
│   │   │   │   │   ├── sort_desc_disabled.png
│   │   │   │   │   ├── sort_desc.png
│   │   │   │   │   └── Sorting icons.psd
│   │   │   │   └── js
│   │   │   │       ├── jquery.dataTables.js
│   │   │   │       ├── jquery.dataTables.min.js
│   │   │   │       └── jquery.js
│   │   │   └── Readme.md
│   │   ├── datatables-plugins
│   │   │   ├── api
│   │   │   │   ├── average().js
│   │   │   │   ├── columns().order().js
│   │   │   │   ├── column().title().js
│   │   │   │   ├── fnAddDataAndDisplay.js
│   │   │   │   ├── fnAddTr.js
│   │   │   │   ├── fnColumnIndexToVisible.js
│   │   │   │   ├── fnDataUpdate.js
│   │   │   │   ├── fnDisplayRow.js
│   │   │   │   ├── fnDisplayStart.js
│   │   │   │   ├── fnFakeRowspan.js
│   │   │   │   ├── fnFilterAll.js
│   │   │   │   ├── fnFilterClear.js
│   │   │   │   ├── fnFilterOnReturn.js
│   │   │   │   ├── fnFindCellRowIndexes.js
│   │   │   │   ├── fnFindCellRowNodes.js
│   │   │   │   ├── fnGetAdjacentTr.js
│   │   │   │   ├── fnGetColumnData.js
│   │   │   │   ├── fnGetColumnIndex.js
│   │   │   │   ├── fnGetHiddenNodes.js
│   │   │   │   ├── fnGetTd.js
│   │   │   │   ├── fnGetTds.js
│   │   │   │   ├── fnLengthChange.js
│   │   │   │   ├── fnMultiFilter.js
│   │   │   │   ├── fnPagingInfo.js
│   │   │   │   ├── fnProcessingIndicator.js
│   │   │   │   ├── fnReloadAjax.js
│   │   │   │   ├── fnSetFilteringDelay.js
│   │   │   │   ├── fnSortNeutral.js
│   │   │   │   ├── fnStandingRedraw.js
│   │   │   │   ├── fnVisibleToColumnIndex.js
│   │   │   │   ├── index.html
│   │   │   │   ├── page.jumpToData().js
│   │   │   │   └── sum().js
│   │   │   ├── features
│   │   │   │   ├── alphabetSearch
│   │   │   │   │   ├── dataTables.alphabetSearch.css
│   │   │   │   │   ├── dataTables.alphabetSearch.js
│   │   │   │   │   └── dataTables.alphabetSearch.min.js
│   │   │   │   ├── lengthLinks
│   │   │   │   │   ├── dataTables.lengthLinks.css
│   │   │   │   │   ├── dataTables.lengthLinks.js
│   │   │   │   │   └── dataTables.lengthLinks.min.js
│   │   │   │   └── searchHighlight
│   │   │   │       ├── dataTables.searchHighlight.css
│   │   │   │       ├── dataTables.searchHighlight.js
│   │   │   │       └── dataTables.searchHighlight.min.js
│   │   │   ├── filtering
│   │   │   │   ├── index.html
│   │   │   │   ├── row-based
│   │   │   │   │   ├── range_dates.js
│   │   │   │   │   ├── range_numbers.js
│   │   │   │   │   └── TableTools.ShowSelectedOnly.js
│   │   │   │   └── type-based
│   │   │   │       ├── accent-neutralise.js
│   │   │   │       ├── html.js
│   │   │   │       └── phoneNumber.js
│   │   │   ├── i18n
│   │   │   │   ├── Afrikaans.lang
│   │   │   │   ├── Albanian.lang
│   │   │   │   ├── Arabic.lang
│   │   │   │   ├── Azerbaijan.lang
│   │   │   │   ├── Bangla.lang
│   │   │   │   ├── Belarusian.lang
│   │   │   │   ├── Bulgarian.lang
│   │   │   │   ├── Catalan.lang
│   │   │   │   ├── Chinese.lang
│   │   │   │   ├── Chinese-traditional.lang
│   │   │   │   ├── Croatian.lang
│   │   │   │   ├── Czech.lang
│   │   │   │   ├── Danish.lang
│   │   │   │   ├── Dutch.lang
│   │   │   │   ├── English.lang
│   │   │   │   ├── Estonian.lang
│   │   │   │   ├── Filipino.lang
│   │   │   │   ├── Finnish.lang
│   │   │   │   ├── French.lang
│   │   │   │   ├── Galician.lang
│   │   │   │   ├── Georgian.lang
│   │   │   │   ├── German.lang
│   │   │   │   ├── Greek.lang
│   │   │   │   ├── Gujarati.lang
│   │   │   │   ├── Hebrew.lang
│   │   │   │   ├── Hindi.lang
│   │   │   │   ├── Hungarian.lang
│   │   │   │   ├── Icelandic.lang
│   │   │   │   ├── index.html
│   │   │   │   ├── Indonesian-Alternative.lang
│   │   │   │   ├── Indonesian.lang
│   │   │   │   ├── Irish.lang
│   │   │   │   ├── Italian.lang
│   │   │   │   ├── Japanese.lang
│   │   │   │   ├── Korean.lang
│   │   │   │   ├── Latvian.lang
│   │   │   │   ├── Lithuanian.lang
│   │   │   │   ├── Macedonian.lang
│   │   │   │   ├── Malay.lang
│   │   │   │   ├── Norwegian.lang
│   │   │   │   ├── Persian.lang
│   │   │   │   ├── Polish.lang
│   │   │   │   ├── Portuguese-Brasil.lang
│   │   │   │   ├── Portuguese.lang
│   │   │   │   ├── Romanian.lang
│   │   │   │   ├── Russian.lang
│   │   │   │   ├── Serbian.lang
│   │   │   │   ├── Slovak.lang
│   │   │   │   ├── Slovenian.lang
│   │   │   │   ├── Spanish.lang
│   │   │   │   ├── Swahili.lang
│   │   │   │   ├── Swedish.lang
│   │   │   │   ├── Tamil.lang
│   │   │   │   ├── Thai.lang
│   │   │   │   ├── Turkish.lang
│   │   │   │   ├── Ukranian.lang
│   │   │   │   ├── Urdu.lang
│   │   │   │   ├── Uzbek.lang
│   │   │   │   └── Vietnamese.lang
│   │   │   ├── integration
│   │   │   │   ├── bootstrap
│   │   │   │   │   ├── 1
│   │   │   │   │   │   ├── dataTables.bootstrap.css
│   │   │   │   │   │   └── dataTables.bootstrap.js
│   │   │   │   │   ├── 2
│   │   │   │   │   │   ├── dataTables.bootstrap.css
│   │   │   │   │   │   ├── dataTables.bootstrap.js
│   │   │   │   │   │   ├── dataTables.bootstrap.min.js
│   │   │   │   │   │   └── index.html
│   │   │   │   │   ├── 3
│   │   │   │   │   │   ├── dataTables.bootstrap.css
│   │   │   │   │   │   ├── dataTables.bootstrap.js
│   │   │   │   │   │   ├── dataTables.bootstrap.min.js
│   │   │   │   │   │   └── index.html
│   │   │   │   │   └── images
│   │   │   │   │       ├── sort_asc_disabled.png
│   │   │   │   │       ├── sort_asc.png
│   │   │   │   │       ├── sort_both.png
│   │   │   │   │       ├── sort_desc_disabled.png
│   │   │   │   │       └── sort_desc.png
│   │   │   │   ├── font-awesome
│   │   │   │   │   ├── bootstrap.html
│   │   │   │   │   ├── dataTables.fontAwesome.css
│   │   │   │   │   ├── datatables.html
│   │   │   │   │   └── foundation.html
│   │   │   │   ├── foundation
│   │   │   │   │   ├── dataTables.foundation.css
│   │   │   │   │   ├── dataTables.foundation.js
│   │   │   │   │   ├── dataTables.foundation.min.js
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── sort_asc_disabled.png
│   │   │   │   │   │   ├── sort_asc.png
│   │   │   │   │   │   ├── sort_both.png
│   │   │   │   │   │   ├── sort_desc_disabled.png
│   │   │   │   │   │   └── sort_desc.png
│   │   │   │   │   └── index.html
│   │   │   │   └── jqueryui
│   │   │   │       ├── dataTables.jqueryui.css
│   │   │   │       ├── dataTables.jqueryui.js
│   │   │   │       ├── dataTables.jqueryui.min.js
│   │   │   │       ├── dataTables.jqueryui.scss
│   │   │   │       └── index.html
│   │   │   ├── make.sh
│   │   │   ├── pagination
│   │   │   │   ├── ellipses.js
│   │   │   │   ├── extjs.js
│   │   │   │   ├── four_button.js
│   │   │   │   ├── index.html
│   │   │   │   ├── input.js
│   │   │   │   ├── jPaginator
│   │   │   │   │   └── dataTables.jPaginator.js
│   │   │   │   ├── scrolling.js
│   │   │   │   └── select.js
│   │   │   ├── README.md
│   │   │   ├── sorting
│   │   │   │   ├── alt-string.js
│   │   │   │   ├── anti-the.js
│   │   │   │   ├── chinese-string.js
│   │   │   │   ├── currency.js
│   │   │   │   ├── custom-data-source
│   │   │   │   │   ├── dom-checkbox.js
│   │   │   │   │   ├── dom-select.js
│   │   │   │   │   └── dom-text.js
│   │   │   │   ├── date-dd-MMM-yyyy.js
│   │   │   │   ├── date-de.js
│   │   │   │   ├── date-eu.js
│   │   │   │   ├── date-euro.js
│   │   │   │   ├── datetime-moment.js
│   │   │   │   ├── datetime-us.js
│   │   │   │   ├── date-uk.js
│   │   │   │   ├── enum.js
│   │   │   │   ├── file-size.js
│   │   │   │   ├── formatted-numbers.js
│   │   │   │   ├── index.html
│   │   │   │   ├── ip-address.js
│   │   │   │   ├── monthYear.js
│   │   │   │   ├── natural.js
│   │   │   │   ├── numeric-comma.js
│   │   │   │   ├── num-html.js
│   │   │   │   ├── percent.js
│   │   │   │   ├── persian.js
│   │   │   │   ├── scientific.js
│   │   │   │   ├── signed-num.js
│   │   │   │   ├── stringMonthYear.js
│   │   │   │   ├── time.js
│   │   │   │   ├── title-numeric.js
│   │   │   │   ├── title-string.js
│   │   │   │   └── turkish-string.js
│   │   │   └── type-detection
│   │   │       ├── currency.js
│   │   │       ├── date-uk.js
│   │   │       ├── file-size.js
│   │   │       ├── formatted-num.js
│   │   │       ├── index.html
│   │   │       ├── ip-address.js
│   │   │       ├── numeric-comma.js
│   │   │       └── num-html.js
│   │   ├── datatables-responsive
│   │   │   ├── bower.json
│   │   │   ├── css
│   │   │   │   ├── dataTables.responsive.css
│   │   │   │   └── dataTables.responsive.scss
│   │   │   ├── docs
│   │   │   │   ├── api
│   │   │   │   │   ├── responsive.index().xml
│   │   │   │   │   └── responsive.recalc().xml
│   │   │   │   └── option
│   │   │   │       ├── responsive.breakpoints.xml
│   │   │   │       ├── responsive.details.renderer.xml
│   │   │   │       ├── responsive.details.target.xml
│   │   │   │       ├── responsive.details.type.xml
│   │   │   │       ├── responsive.details.xml
│   │   │   │       └── responsive.xml
│   │   │   ├── examples
│   │   │   │   ├── child-rows
│   │   │   │   │   ├── column-control.xml
│   │   │   │   │   ├── custom-renderer.xml
│   │   │   │   │   ├── disable-child-rows.xml
│   │   │   │   │   ├── index.xml
│   │   │   │   │   ├── right-column.xml
│   │   │   │   │   └── whole-row-control.xml
│   │   │   │   ├── display-control
│   │   │   │   │   ├── auto.xml
│   │   │   │   │   ├── classes.xml
│   │   │   │   │   ├── index.xml
│   │   │   │   │   └── init-classes.xml
│   │   │   │   ├── index.xml
│   │   │   │   ├── initialisation
│   │   │   │   │   ├── ajax.xml
│   │   │   │   │   ├── className.xml
│   │   │   │   │   ├── default.xml
│   │   │   │   │   ├── index.xml
│   │   │   │   │   ├── new.xml
│   │   │   │   │   └── option.xml
│   │   │   │   └── styling
│   │   │   │       ├── bootstrap.xml
│   │   │   │       ├── foundation.xml
│   │   │   │       └── index.xml
│   │   │   ├── js
│   │   │   │   └── dataTables.responsive.js
│   │   │   ├── make.sh
│   │   │   └── Readme.md
│   │   ├── flot
│   │   │   ├── API.md
│   │   │   ├── component.json
│   │   │   ├── CONTRIBUTING.md
│   │   │   ├── examples
│   │   │   │   ├── ajax
│   │   │   │   │   ├── data-eu-gdp-growth-1.json
│   │   │   │   │   ├── data-eu-gdp-growth-2.json
│   │   │   │   │   ├── data-eu-gdp-growth-3.json
│   │   │   │   │   ├── data-eu-gdp-growth-4.json
│   │   │   │   │   ├── data-eu-gdp-growth-5.json
│   │   │   │   │   ├── data-eu-gdp-growth.json
│   │   │   │   │   ├── data-japan-gdp-growth.json
│   │   │   │   │   ├── data-usa-gdp-growth.json
│   │   │   │   │   └── index.html
│   │   │   │   ├── annotating
│   │   │   │   │   └── index.html
│   │   │   │   ├── axes-interacting
│   │   │   │   │   └── index.html
│   │   │   │   ├── axes-multiple
│   │   │   │   │   └── index.html
│   │   │   │   ├── axes-time
│   │   │   │   │   └── index.html
│   │   │   │   ├── axes-time-zones
│   │   │   │   │   ├── date.js
│   │   │   │   │   ├── index.html
│   │   │   │   │   └── tz
│   │   │   │   │       ├── africa
│   │   │   │   │       ├── antarctica
│   │   │   │   │       ├── asia
│   │   │   │   │       ├── australasia
│   │   │   │   │       ├── backward
│   │   │   │   │       ├── etcetera
│   │   │   │   │       ├── europe
│   │   │   │   │       ├── factory
│   │   │   │   │       ├── iso3166.tab
│   │   │   │   │       ├── leapseconds
│   │   │   │   │       ├── northamerica
│   │   │   │   │       ├── pacificnew
│   │   │   │   │       ├── solar87
│   │   │   │   │       ├── solar88
│   │   │   │   │       ├── solar89
│   │   │   │   │       ├── southamerica
│   │   │   │   │       ├── systemv
│   │   │   │   │       ├── yearistype.sh
│   │   │   │   │       └── zone.tab
│   │   │   │   ├── background.png
│   │   │   │   ├── basic-options
│   │   │   │   │   └── index.html
│   │   │   │   ├── basic-usage
│   │   │   │   │   └── index.html
│   │   │   │   ├── canvas
│   │   │   │   │   └── index.html
│   │   │   │   ├── categories
│   │   │   │   │   └── index.html
│   │   │   │   ├── examples.css
│   │   │   │   ├── image
│   │   │   │   │   ├── hs-2004-27-a-large-web.jpg
│   │   │   │   │   └── index.html
│   │   │   │   ├── index.html
│   │   │   │   ├── interacting
│   │   │   │   │   └── index.html
│   │   │   │   ├── navigate
│   │   │   │   │   ├── arrow-down.gif
│   │   │   │   │   ├── arrow-left.gif
│   │   │   │   │   ├── arrow-right.gif
│   │   │   │   │   ├── arrow-up.gif
│   │   │   │   │   └── index.html
│   │   │   │   ├── percentiles
│   │   │   │   │   └── index.html
│   │   │   │   ├── realtime
│   │   │   │   │   └── index.html
│   │   │   │   ├── resize
│   │   │   │   │   └── index.html
│   │   │   │   ├── selection
│   │   │   │   │   └── index.html
│   │   │   │   ├── series-errorbars
│   │   │   │   │   └── index.html
│   │   │   │   ├── series-pie
│   │   │   │   │   └── index.html
│   │   │   │   ├── series-toggle
│   │   │   │   │   └── index.html
│   │   │   │   ├── series-types
│   │   │   │   │   └── index.html
│   │   │   │   ├── shared
│   │   │   │   │   └── jquery-ui
│   │   │   │   │       └── jquery-ui.min.css
│   │   │   │   ├── stacking
│   │   │   │   │   └── index.html
│   │   │   │   ├── symbols
│   │   │   │   │   └── index.html
│   │   │   │   ├── threshold
│   │   │   │   │   └── index.html
│   │   │   │   ├── tracking
│   │   │   │   │   └── index.html
│   │   │   │   ├── visitors
│   │   │   │   │   └── index.html
│   │   │   │   └── zooming
│   │   │   │       └── index.html
│   │   │   ├── excanvas.js
│   │   │   ├── excanvas.min.js
│   │   │   ├── FAQ.md
│   │   │   ├── flot.jquery.json
│   │   │   ├── jquery.colorhelpers.js
│   │   │   ├── jquery.flot.canvas.js
│   │   │   ├── jquery.flot.categories.js
│   │   │   ├── jquery.flot.crosshair.js
│   │   │   ├── jquery.flot.errorbars.js
│   │   │   ├── jquery.flot.fillbetween.js
│   │   │   ├── jquery.flot.image.js
│   │   │   ├── jquery.flot.js
│   │   │   ├── jquery.flot.navigate.js
│   │   │   ├── jquery.flot.pie.js
│   │   │   ├── jquery.flot.resize.js
│   │   │   ├── jquery.flot.selection.js
│   │   │   ├── jquery.flot.stack.js
│   │   │   ├── jquery.flot.symbol.js
│   │   │   ├── jquery.flot.threshold.js
│   │   │   ├── jquery.flot.time.js
│   │   │   ├── jquery.js
│   │   │   ├── LICENSE.txt
│   │   │   ├── Makefile
│   │   │   ├── NEWS.md
│   │   │   ├── package.json
│   │   │   ├── PLUGINS.md
│   │   │   └── README.md
│   │   ├── flot.tooltip
│   │   │   ├── bower.json
│   │   │   └── js
│   │   │       ├── excanvas.min.js
│   │   │       ├── jquery.flot.js
│   │   │       ├── jquery.flot.tooltip.js
│   │   │       ├── jquery.flot.tooltip.min.js
│   │   │       └── jquery.flot.tooltip.source.js
│   │   ├── font-awesome
│   │   │   ├── bower.json
│   │   │   ├── css
│   │   │   │   ├── font-awesome.css
│   │   │   │   └── font-awesome.min.css
│   │   │   ├── fonts
│   │   │   │   ├── FontAwesome.otf
│   │   │   │   ├── fontawesome-webfont.eot
│   │   │   │   ├── fontawesome-webfont.svg
│   │   │   │   ├── fontawesome-webfont.ttf
│   │   │   │   └── fontawesome-webfont.woff
│   │   │   ├── less
│   │   │   │   ├── bordered-pulled.less
│   │   │   │   ├── core.less
│   │   │   │   ├── extras.less
│   │   │   │   ├── fixed-width.less
│   │   │   │   ├── font-awesome.less
│   │   │   │   ├── icons.less
│   │   │   │   ├── larger.less
│   │   │   │   ├── list.less
│   │   │   │   ├── mixins.less
│   │   │   │   ├── path.less
│   │   │   │   ├── rotated-flipped.less
│   │   │   │   ├── spinning.less
│   │   │   │   ├── stacked.less
│   │   │   │   └── variables.less
│   │   │   └── scss
│   │   │       ├── _bordered-pulled.scss
│   │   │       ├── _core.scss
│   │   │       ├── _extras.scss
│   │   │       ├── _fixed-width.scss
│   │   │       ├── font-awesome.scss
│   │   │       ├── _icons.scss
│   │   │       ├── _larger.scss
│   │   │       ├── _list.scss
│   │   │       ├── _mixins.scss
│   │   │       ├── _path.scss
│   │   │       ├── _rotated-flipped.scss
│   │   │       ├── _spinning.scss
│   │   │       ├── _stacked.scss
│   │   │       └── _variables.scss
│   │   ├── holderjs
│   │   │   ├── bower.json
│   │   │   ├── composer.json
│   │   │   ├── gulpfile.js
│   │   │   ├── holder.js
│   │   │   ├── package.json
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   ├── augment.js
│   │   │   │   ├── holder.js
│   │   │   │   ├── ondomready.js
│   │   │   │   └── polyfills.js
│   │   │   └── test
│   │   │       ├── image.jpg
│   │   │       └── index.html
│   │   ├── jquery
│   │   │   ├── bower.json
│   │   │   ├── dist
│   │   │   │   ├── jquery.js
│   │   │   │   ├── jquery.min.js
│   │   │   │   └── jquery.min.map
│   │   │   ├── MIT-LICENSE.txt
│   │   │   └── src
│   │   │       ├── ajax
│   │   │       │   ├── jsonp.js
│   │   │       │   ├── load.js
│   │   │       │   ├── parseJSON.js
│   │   │       │   ├── parseXML.js
│   │   │       │   ├── script.js
│   │   │       │   ├── var
│   │   │       │   │   ├── nonce.js
│   │   │       │   │   └── rquery.js
│   │   │       │   └── xhr.js
│   │   │       ├── ajax.js
│   │   │       ├── attributes
│   │   │       │   ├── attr.js
│   │   │       │   ├── classes.js
│   │   │       │   ├── prop.js
│   │   │       │   ├── support.js
│   │   │       │   └── val.js
│   │   │       ├── attributes.js
│   │   │       ├── callbacks.js
│   │   │       ├── core
│   │   │       │   ├── access.js
│   │   │       │   ├── init.js
│   │   │       │   ├── parseHTML.js
│   │   │       │   ├── ready.js
│   │   │       │   └── var
│   │   │       │       └── rsingleTag.js
│   │   │       ├── core.js
│   │   │       ├── css
│   │   │       │   ├── addGetHookIf.js
│   │   │       │   ├── curCSS.js
│   │   │       │   ├── defaultDisplay.js
│   │   │       │   ├── hiddenVisibleSelectors.js
│   │   │       │   ├── support.js
│   │   │       │   ├── swap.js
│   │   │       │   └── var
│   │   │       │       ├── cssExpand.js
│   │   │       │       ├── getStyles.js
│   │   │       │       ├── isHidden.js
│   │   │       │       ├── rmargin.js
│   │   │       │       └── rnumnonpx.js
│   │   │       ├── css.js
│   │   │       ├── data
│   │   │       │   ├── accepts.js
│   │   │       │   ├── Data.js
│   │   │       │   └── var
│   │   │       │       ├── data_priv.js
│   │   │       │       └── data_user.js
│   │   │       ├── data.js
│   │   │       ├── deferred.js
│   │   │       ├── deprecated.js
│   │   │       ├── dimensions.js
│   │   │       ├── effects
│   │   │       │   ├── animatedSelector.js
│   │   │       │   └── Tween.js
│   │   │       ├── effects.js
│   │   │       ├── event
│   │   │       │   ├── ajax.js
│   │   │       │   ├── alias.js
│   │   │       │   └── support.js
│   │   │       ├── event.js
│   │   │       ├── exports
│   │   │       │   ├── amd.js
│   │   │       │   └── global.js
│   │   │       ├── intro.js
│   │   │       ├── jquery.js
│   │   │       ├── manipulation
│   │   │       │   ├── _evalUrl.js
│   │   │       │   ├── support.js
│   │   │       │   └── var
│   │   │       │       └── rcheckableType.js
│   │   │       ├── manipulation.js
│   │   │       ├── offset.js
│   │   │       ├── outro.js
│   │   │       ├── queue
│   │   │       │   └── delay.js
│   │   │       ├── queue.js
│   │   │       ├── selector.js
│   │   │       ├── selector-native.js
│   │   │       ├── selector-sizzle.js
│   │   │       ├── serialize.js
│   │   │       ├── sizzle
│   │   │       │   └── dist
│   │   │       │       ├── sizzle.js
│   │   │       │       ├── sizzle.min.js
│   │   │       │       └── sizzle.min.map
│   │   │       ├── traversing
│   │   │       │   ├── findFilter.js
│   │   │       │   └── var
│   │   │       │       └── rneedsContext.js
│   │   │       ├── traversing.js
│   │   │       ├── var
│   │   │       │   ├── arr.js
│   │   │       │   ├── class2type.js
│   │   │       │   ├── concat.js
│   │   │       │   ├── hasOwn.js
│   │   │       │   ├── indexOf.js
│   │   │       │   ├── pnum.js
│   │   │       │   ├── push.js
│   │   │       │   ├── rnotwhite.js
│   │   │       │   ├── slice.js
│   │   │       │   ├── strundefined.js
│   │   │       │   ├── support.js
│   │   │       │   └── toString.js
│   │   │       └── wrap.js
│   │   ├── metisMenu
│   │   │   ├── bower.json
│   │   │   ├── dist
│   │   │   │   ├── metisMenu.css
│   │   │   │   ├── metisMenu.js
│   │   │   │   ├── metisMenu.min.css
│   │   │   │   └── metisMenu.min.js
│   │   │   ├── Gruntfile.js
│   │   │   ├── LICENSE
│   │   │   ├── package.json
│   │   │   ├── README.md
│   │   │   └── src
│   │   │       ├── metisMenu.css
│   │   │       └── metisMenu.js
│   │   ├── mocha
│   │   │   ├── bower.json
│   │   │   ├── History.md
│   │   │   ├── LICENSE
│   │   │   ├── media
│   │   │   │   └── logo.svg
│   │   │   ├── mocha.css
│   │   │   ├── mocha.js
│   │   │   └── Readme.md
│   │   ├── morrisjs
│   │   │   ├── bower.json
│   │   │   ├── bower.travis.json
│   │   │   ├── examples
│   │   │   │   ├── area-as-line.html
│   │   │   │   ├── area.html
│   │   │   │   ├── bar-colors.html
│   │   │   │   ├── bar.html
│   │   │   │   ├── bar-no-axes.html
│   │   │   │   ├── days.html
│   │   │   │   ├── decimal-custom-hover.html
│   │   │   │   ├── diagonal-xlabels-bar.html
│   │   │   │   ├── diagonal-xlabels.html
│   │   │   │   ├── donut-colors.html
│   │   │   │   ├── donut-formatter.html
│   │   │   │   ├── donut.html
│   │   │   │   ├── dst.html
│   │   │   │   ├── events.html
│   │   │   │   ├── goals.html
│   │   │   │   ├── lib
│   │   │   │   │   ├── example.css
│   │   │   │   │   └── example.js
│   │   │   │   ├── months-no-smooth.html
│   │   │   │   ├── negative.html
│   │   │   │   ├── no-grid.html
│   │   │   │   ├── non-continuous.html
│   │   │   │   ├── non-date.html
│   │   │   │   ├── quarters.html
│   │   │   │   ├── resize.html
│   │   │   │   ├── stacked_bars.html
│   │   │   │   ├── _template.html
│   │   │   │   ├── timestamps.html
│   │   │   │   ├── updating.html
│   │   │   │   ├── weeks.html
│   │   │   │   └── years.html
│   │   │   ├── Gruntfile.js
│   │   │   ├── less
│   │   │   │   └── morris.core.less
│   │   │   ├── lib
│   │   │   │   ├── morris.area.coffee
│   │   │   │   ├── morris.bar.coffee
│   │   │   │   ├── morris.coffee
│   │   │   │   ├── morris.donut.coffee
│   │   │   │   ├── morris.grid.coffee
│   │   │   │   ├── morris.hover.coffee
│   │   │   │   └── morris.line.coffee
│   │   │   ├── morris.css
│   │   │   ├── morris.js
│   │   │   ├── morris.min.js
│   │   │   ├── package.json
│   │   │   ├── README.md
│   │   │   └── spec
│   │   │       ├── lib
│   │   │       │   ├── area
│   │   │       │   │   └── area_spec.coffee
│   │   │       │   ├── bar
│   │   │       │   │   ├── bar_spec.coffee
│   │   │       │   │   └── colours.coffee
│   │   │       │   ├── commas_spec.coffee
│   │   │       │   ├── donut
│   │   │       │   │   └── donut_spec.coffee
│   │   │       │   ├── grid
│   │   │       │   │   ├── auto_grid_lines_spec.coffee
│   │   │       │   │   ├── set_data_spec.coffee
│   │   │       │   │   └── y_label_format_spec.coffee
│   │   │       │   ├── hover_spec.coffee
│   │   │       │   ├── label_series_spec.coffee
│   │   │       │   ├── line
│   │   │       │   │   └── line_spec.coffee
│   │   │       │   ├── pad_spec.coffee
│   │   │       │   └── parse_time_spec.coffee
│   │   │       ├── specs.html
│   │   │       ├── support
│   │   │       │   └── placeholder.coffee
│   │   │       └── viz
│   │   │           ├── examples.js
│   │   │           ├── exemplary
│   │   │           │   ├── area0.png
│   │   │           │   ├── bar0.png
│   │   │           │   ├── line0.png
│   │   │           │   └── stacked_bar0.png
│   │   │           ├── run.sh
│   │   │           ├── test.html
│   │   │           └── visual_specs.js
│   │   └── raphael
│   │       ├── bower.json
│   │       ├── dev
│   │       │   ├── amdDev.js
│   │       │   └── require.js
│   │       ├── license.txt
│   │       ├── raphael.js
│   │       └── raphael-min.js
│   ├── circle-progress.js
│   ├── css
│   │   ├── admin-base.css
│   │   ├── admin-login.css
│   │   ├── costum.css
│   │   └── loadingbar.css
│   ├── dist
│   │   ├── css
│   │   │   ├── sb-admin-2.css
│   │   │   └── timeline.css
│   │   └── js
│   │       └── sb-admin-2.js
│   └── js
│       ├── circle-progress.js
│       ├── flot-data.js
│       ├── morris-data.js
│       └── progressbar.js
├── static-root
├── templates
│   ├── admin-panel
│   │   ├── base-admin.html
│   │   ├── bower.json
│   │   ├── index.html
│   │   ├── less
│   │   │   ├── mixins.less
│   │   │   ├── sb-admin-2.less
│   │   │   └── variables.less
│   │   ├── LICENSE
│   │   ├── login.html
│   │   ├── pages
│   │   │   ├── blank.html
│   │   │   ├── buttons.html
│   │   │   ├── editarPlaneamento.html
│   │   │   ├── flot.html
│   │   │   ├── forms.html
│   │   │   ├── gerarPlaneamento.html
│   │   │   ├── grid.html
│   │   │   ├── icons.html
│   │   │   ├── index.html
│   │   │   ├── login.html
│   │   │   ├── morris.html
│   │   │   ├── navbar.html
│   │   │   ├── notifications.html
│   │   │   ├── panels-wells.html
│   │   │   ├── renderEdit.html
│   │   │   ├── tables.html
│   │   │   ├── typography.html
│   │   │   └── verPlaneamento.html
│   │   └── README.md
│   ├── base.html
│   ├── home.html
│   ├── renderSolution.html
│   └── runAlgorithm.html
└── teste1
    ├── admin.py
    ├── admin.pyc
    ├── algorithm.py
    ├── binariesExchange.py
    ├── binaries.py
    ├── fitness.py
    ├── __init__.py
    ├── __init__.pyc
    ├── migrations
    │   ├── 0001_initial.py
    │   ├── 0001_initial.pyc
    │   ├── 0002_execution.py
    │   ├── 0002_execution.pyc
    │   ├── 0003_auto_20150301_1754.py
    │   ├── 0003_auto_20150301_1754.pyc
    │   ├── __init__.py
    │   ├── __init__.pyc
    │   └── __pycache__
    │       ├── 0001_initial.cpython-34.pyc
    │       ├── 0002_execution.cpython-34.pyc
    │       ├── 0003_auto_20150301_1754.cpython-34.pyc
    │       └── __init__.cpython-34.pyc
    ├── models.py
    ├── models.pyc
    ├── __pycache__
    │   ├── admin.cpython-34.pyc
    │   ├── algorithm.cpython-34.pyc
    │   ├── binaries.cpython-34.pyc
    │   ├── binariesExchange.cpython-34.pyc
    │   ├── fitness.cpython-34.pyc
    │   ├── __init__.cpython-34.pyc
    │   ├── models.cpython-34.pyc
    │   └── views.cpython-34.pyc
    ├── tests.py
    └── views.py



On Monday, 4 May 2015 00:16:00 UTC+1, Mike Dewhirst wrote:
On 4/05/2015 6:08 AM, João Marques wrote:
> Now what happens when I run the server in "debug = False" is an error
> 500. Without the "debug = False" I get this:'Empty static prefix not
> permitted'.

Googling that error brings up a few results. It seems to indicate a
problem with STATIC_ROOT and STATIC_URL when DEBUG is true and/or
misconfiguration of Nginx when DEBUG is false.

https://docs.djangoproject.com/en/1.8/howto/static-files/#deployment

Running collectstatic drops all your static files into the STATIC_ROOT
directory on the server and that is where Nginx has to find them. The
way it works is that when a user requests a static file in a URL, Nginx
has to recognise the URL prefix to the static file named. The Nginx
config you need is to make the recognised URL prefix point to a real
location on the server (ie where collectstatic previously put the static
files)

hth

Mike

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/84a5cb5c-c108-48bf-bd23-26f825e15e69%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment