##// END OF EJS Templates
First add the truncator (if there is none in the text itself), then closing tags
First add the truncator (if there is none in the text itself), then closing tags

File last commit:

r1616:21816ae5 default
r1788:e1bfd1eb default
Show More
archive_threads.py
16 lines | 348 B | text/x-python | PythonLexer
from django.core.management import BaseCommand
from django.db import transaction
from django.db.models import Count
from boards.models import Thread
__author__ = 'neko259'
class Command(BaseCommand):
help = 'Archive old threads'
@transaction.atomic
def handle(self, *args, **options):
Thread.objects.process_old_threads()