]> git.openstreetmap.org Git - osqa.git/blob - forum/management/commands/sample_command.py
#OSQAAWS-79, the improved filtration of the content, now we check if the moderation...
[osqa.git] / forum / management / commands / sample_command.py
1 from django.core.management.base import NoArgsCommand
2 from forum.models import Comment
3
4 class Command(NoArgsCommand):
5     def handle_noargs(self, **options):
6         objs = Comment.objects.all()
7         print objs