##// END OF EJS Templates
Fixed sticker autocompletions. Localized 'too many files' message and added max file count there
Fixed sticker autocompletions. Localized 'too many files' message and added max file count there

File last commit:

r1741:58ced8b0 default
r1766:8d73e763 default
Show More
all_tags.py
17 lines | 353 B | text/x-python | PythonLexer
from django.shortcuts import render
from boards.views.base import BaseBoardView
from boards.models.tag import Tag
PARAM_TAGS = 'all_tags'
class AllTagsView(BaseBoardView):
def get(self, request):
params = dict()
params[PARAM_TAGS] = Tag.objects.get_not_empty_tags()
return render(request, 'boards/tags.html', params)