I'm trying to make a threaded discussion board site. I'm using the FastTemplate class to make the whole thing use templates, but I can't figure out how to make the actual thread part with templates.
I'm trying to use one template for each level, and one for each reply.
For example:
level.tpl:
<ul>
REPLIES
</ul>
reply.tpl:
<li>REPLY
But I can't figure out how to put this together so that I have multiple levels and multiple replies.
Any ideas?