templates/__init__.py
author Tero Marttila <terom@fixme.fi>
Fri, 06 Feb 2009 22:48:00 +0200
changeset 8 0ce1f471e9d7
parent 6 5565d94da522
permissions -rw-r--r--
and it works, a lot better than before

# system imports
from Cheetah.Template import Template as _CheetahTemplate

# base template
class _BaseTemplate (_CheetahTemplate) :
    def __init__ (self, req) :
        """
            Blah
        """

        # XXX: not done
        pass


# import templates
from layout import layout
from main import main
from error_404 import error_404