diff --git a/boards/models/tag.py b/boards/models/tag.py --- a/boards/models/tag.py +++ b/boards/models/tag.py @@ -23,8 +23,7 @@ class TagManager(models.Manager): """ tags = self.annotate(Count('threads')) \ - .filter(threads__count__gt=0).filter(threads__archived=False) \ - .order_by('name') + .filter(threads__count__gt=0).order_by('name') return tags @@ -136,4 +135,4 @@ class Tag(models.Model, Viewable): def get_view(self, *args, **kwargs): return render_to_string('boards/tag.html', { 'tag': self, - }) \ No newline at end of file + })