[Answered ]-Django rest swagger does not display properly

2๐Ÿ‘

โœ…

I assume that your static files is not configured. You can see this in firebug or chrome dev tools.

  1. Read the documentation how to deploy static files (https://docs.djangoproject.com/en/1.8/howto/static-files/deployment/)
  2. Check that rest_swagger in your INSTALLED_APPS.
  3. Check that STATIC_URL, STATIC_ROOT settings is setted properly.
  4. Call collectstatic management command.
  5. Check that nginx configured to serve static files in STATIC_ROOT folder.
๐Ÿ‘คsinitsynsv

Leave a comment