Commit 4edb9fa0 by Chris Jerdonek

Renamed view module to custom_template.

parent 87987fe5
......@@ -5,9 +5,9 @@ This module contains the initialization logic called by __init__.py.
"""
from .custom_template import View
from .custom_template import CustomizedTemplate
from .renderer import Renderer
from .view import View
from .view import CustomizedTemplate
__all__ = ['render', 'Renderer', 'View', 'CustomizedTemplate']
......
# coding: utf-8
from pystache.view import View
from pystache import View
class SayHello(object):
......
......@@ -13,9 +13,9 @@ from examples.complex_view import ComplexView
from examples.lambdas import Lambdas
from examples.inverted import Inverted, InvertedLists
from pystache import Renderer
from pystache import View
from pystache.reader import Reader
from pystache.view import View
from pystache.view import Locator as ViewLocator
from pystache.custom_template import Locator as ViewLocator
from .common import AssertIsMixin
from .common import DATA_DIR
from .data.views import SampleView
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment