It's nearly the same question as this:
Missing bootstrap resources in Django-Rest-Framework
and Django -- Can't get static CSS files to load
So it seems that this may be a more common issue. I checked my settings with the first one and I am not using runserver for the 2nd one.
My settings: DEBUG = False
and installed apps includes: 'django.contrib.staticfiles',
I am running django 1.5 and the latest version of django-rest 2.3.8, using uwsgi + nginx on a Ubuntu 12.04 LTS. The API themselves are being served but the bootstrap and css files are not. When i click into the link in some API and check out the source code for: href = /static/rest_framework/css/bootstrap.min.css
I get the default django 404 url not found.
I think I just missed a step somewhere in the installation but I can't figure out where.