Moved staticfiles to stock/static

Added STATIC_ROOT to enable collection of staticfiles
Ignored static/ directory so changes by end user go untracked
Now required python manage.py collectstatic during install procedure
This commit is contained in:
Adarnof
2015-11-24 23:20:50 +00:00
parent 0607ad9bde
commit cf8d5b748b
98 changed files with 7 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
/* Puts the included jQuery into our own namespace using noConflict and passing
* it 'true'. This ensures that the included jQuery doesn't pollute the global
* namespace (i.e. this preserves pre-existing values for both window.$ and
* window.jQuery).
*/
var django = django || {};
django.jQuery = jQuery.noConflict(true);