diff options
| author | Tom Christie | 2012-09-03 16:54:17 +0100 |
|---|---|---|
| committer | Tom Christie | 2012-09-03 16:54:17 +0100 |
| commit | a092a72844705e3129b8996b81d8424997b5d37f (patch) | |
| tree | 2f9cf30fc805a4b8cf4e6d60b3f820a3e96347e3 /djangorestframework/utils/breadcrumbs.py | |
| parent | 1a1ccf94c2c0cadee8b0bd1c8f85c591c650d763 (diff) | |
| download | django-rest-framework-a092a72844705e3129b8996b81d8424997b5d37f.tar.bz2 | |
View -> APIView
Diffstat (limited to 'djangorestframework/utils/breadcrumbs.py')
| -rw-r--r-- | djangorestframework/utils/breadcrumbs.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/djangorestframework/utils/breadcrumbs.py b/djangorestframework/utils/breadcrumbs.py index 85e13a5a..319ce5f9 100644 --- a/djangorestframework/utils/breadcrumbs.py +++ b/djangorestframework/utils/breadcrumbs.py @@ -1,9 +1,10 @@ from django.core.urlresolvers import resolve + def get_breadcrumbs(url): """Given a url returns a list of breadcrumbs, which are each a tuple of (name, url).""" - from djangorestframework.views import View + from djangorestframework.views import APIView def breadcrumbs_recursive(url, breadcrumbs_list): """Add tuples of (name, url) to the breadcrumbs list, progressively chomping off parts of the url.""" @@ -14,7 +15,7 @@ def get_breadcrumbs(url): pass else: # Check if this is a REST framework view, and if so add it to the breadcrumbs - if isinstance(getattr(view, 'cls_instance', None), View): + if isinstance(getattr(view, 'cls_instance', None), APIView): breadcrumbs_list.insert(0, (view.cls_instance.get_name(), url)) if url == '': |
