view apps/treecomments/__init__.py @ 194:50ba20441122

Added comment template files and customized comments app files
author ahsanalishahid <ahsan.ali.shahid@gmail.com>
date Tue, 02 Jul 2013 02:04:09 +0500
parents
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