from django.core.urlresolvers import reverse from djangorestframework.resources import ModelResource from blogpost.models import BlogPost, Comment class BlogPostResource(ModelResource): """ A Blog Post has a *title* and *content*, and can be associated with zero or more comments. """ model = BlogPost fields = ('created', 'title', 'slug', 'content', 'url', 'comments') ordering = ('-created',) def comments(self, instance): return reverse('comments', kwargs={'blogpost': instance.key}) class CommentResource(ModelResource): """ A Comment is associated with a given Blog Post and has a *username* and *comment*, and optionally a *rating*. """ model = Comment fields = ('username', 'comment', 'created', 'rating', 'url', 'blogpost') ordering = ('-created',) def blogpost(self, instance): return reverse('blog-post', kwargs={'key': instance.blogpost.key}) Web APIs for Django.
aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/tests/files.py
blob: 446e23c07e6ea451d3007096ff5a3ca0b334ae0f (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51