aboutsummaryrefslogtreecommitdiffstats
path: root/examples/mixin/urls.py
blob: 58cf370c1374b4a5b4e51da39fbdc0194583e12b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from djangorestframework.compat import View  # Use Django 1.3's django.views.generic.View, or fall back to a clone of that if Django < 1.3
from djangorestframework.mixins import ResponseMixin
from djangorestframework.renderers import DEFAULT_RENDERERS
from djangorestframework.response import Response

from django.conf.urls.defaults import patterns, url
from django.core.urlresolvers import reverse


class ExampleView(ResponseMixin, View):
    """An example view using Django 1.3's class based views.
    Uses djangorestframework's RendererMixin to provide support for multiple output formats."""
    renderer_classes = DEFAULT_RENDERERS

    def get(self, request):
        response = Response({'description': 'Some example content',
                                  'url': reverse('mixin-view')}, status=200)
        self.response = self.prepare_response(response)
        return self.response


urlpatterns = patterns('',
    url(r'^$', ExampleView.as_view(), name='mixin-view'),
)