I have a static directory located here:
home > my_username > my_app > static
which contains subfolders for js, css, admin, etc.
I ran collect static and now all those subfolders are duplicated in my my_app folder, that is one level up
In my settings.py file I have
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.6/howto/static-files/
STATIC_URL = '/static/'
STATICFILES_DIRS = (
# Put strings here, like "/home/html/static" or "C:/www/django/static".
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
'/home/my_username/my_app/static/',
'/home/my_username/.local/lib/python3.3/site-packages/adminsortable/static/',
)
What did I do wrong, and how can I clean it up? The app seems to function fine, as well as the admin, but it's rather messy at the moment.