2๐
โ
I assume that your static files is not configured. You can see this in firebug or chrome dev tools.
- Read the documentation how to deploy static files (https://docs.djangoproject.com/en/1.8/howto/static-files/deployment/)
- Check that rest_swagger in your INSTALLED_APPS.
- Check that STATIC_URL, STATIC_ROOT settings is setted properly.
- Call collectstatic management command.
- Check that nginx configured to serve static files in STATIC_ROOT folder.
๐คsinitsynsv
Source:stackexchange.com