summaryrefslogtreecommitdiff
path: root/app/links/views.py
blob: 36ccca345e5f69675c175fc7351bcc878b1a8652 (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
from django.views.generic.detail import DetailView
from utils.views import PaginatedListView

from .models import Link
from taggit.models import Tag


class LinkListView(PaginatedListView):
    model = Link
    template_name = 'archives/links.html'


class LinkTagListView(PaginatedListView):
    model = Link
    template_name = 'archives/links.html'

    def get_queryset(self):
        return Link.objects.filter(tags__name=self.kwargs['slug'])

    def get_context_data(self, **kwargs):
        # Call the base implementation first to get a context
        context = super(LinkTagListView, self).get_context_data(**kwargs)
        context['tag'] = Tag.objects.get(slug__exact=self.kwargs['slug'])
        return context

class LinkDetailView(DetailView):
    model = Link
    template_name = "details/link.html"
    slug_field = "id"


class LinkDetailViewTXT(LinkDetailView):
    template_name = "details/entry.txt"