view apps/treecomments/__init__.py @ 196:134f726fd62c

Removed extrawhitespaces and moved comments template files to templates folder
author Ahsan Ali Shahid <ahsan.ali.shahid@gmail.com>
date Thu, 04 Jul 2013 15:45:50 +0500
parents 50ba20441122
children
line wrap: on
line source

from apps.treecomments.models import TreeComments
from apps.treecomments.forms import TreeCommentsForm

def get_model():
	return TreeComments

def get_form():
	return TreeCommentsForm