##// END OF EJS Templates
Added next id list, previous id list and thread to the post XML output
Added next id list, previous id list and thread to the post XML output

File last commit:

r690:a8dffe47 1.8-dev
r829:5301b1d8 decentral
Show More
all_tags.py
13 lines | 361 B | text/x-python | PythonLexer
from django.shortcuts import render
from boards.views.base import BaseBoardView
from boards.models.tag import Tag
class AllTagsView(BaseBoardView):
def get(self, request):
context = self.get_context_data(request=request)
context['all_tags'] = Tag.objects.get_not_empty_tags()
return render(request, 'boards/tags.html', context)