##// END OF EJS Templates
Fixed thread OP id in thread view. Fixed reply count in thread view
Fixed thread OP id in thread view. Fixed reply count in thread view

File last commit:

r291:3b113b42 default
r404:80f183eb 1.4 default
Show More
maintenance.py
15 lines | 302 B | text/x-python | PythonLexer
neko259
Added replies mapping to the server side instead of JS.
r291 """
Maintenance script for neboard imageboard. Use this to update data after
migrations etc.
"""
from boards.models import Post
from boards import views
def update_posts():
for post in Post.objects.all():
print 'Updating post #' + str(post.id)
post.save()
Post.objects.connect_replies(post)