11

最新のPyramidを使用してWebアプリを構築しています。どういうわけか、テンプレートエンジンとしてカメレオンを使い始めました。私は以前にMakoを使用しましたが、ベーステンプレートの作成は非常に簡単でした。これはカメレオンでも可能ですか?

ドキュメントを調べてみましたが、簡単な解決策が見つからないようです。

4

3 に答える 3

16

Chameleon> = 2.7.0では、「load」TALES式を使用できます。例:

main.pt:

<html>
<head>
    <div metal:define-slot="head"></div>
</head>
<body>
    <ul id="menu">
        <li><a href="">Item 1</a></li>
        <li><a href="">Item 2</a></li>
        <li><a href="">Item 3</a></li>
    </ul>
    <div metal:define-slot="content"></div>
</body>
</html>

my_view.pt:

<html metal:use-macro="load: main.pt">

<div metal:fill-slot="content">
    <p>Bonjour tout le monde.</p>
</div>

</html>
于 2012-06-14T13:38:55.737 に答える
2

カメレオンがファイルシステムからテンプレートをロードする機能を取得する前に使用されていた別のオプションは、「ベース」テンプレートをパラメーターとして渡すことです。

物事を単純化するために、私はしばしばそのようなものを「テーマ」オブジェクトにラップします。

class Theme(object):

    def __init__(self, context, request):
        self.context = context
        self.request = request

    layout_fn = 'templates/layout.pt'

    @property
    def layout(self):
        macro_template = get_template(self.layout_fn)
        return macro_template

    @property
    def logged_in_user_id(self):
        """
        Returns the ID of the current user
        """
        return authenticated_userid(self.request)

これは、次のように使用できます。

def someview(context, request):
   theme = Theme(context, request)
   ...
   return { "theme": theme }

テンプレートで使用できるのは次のとおりです。

<html
    xmlns="http://www.w3.org/1999/xhtml"
    xmlns:tal="http://xml.zope.org/namespaces/tal"
    xmlns:metal="http://xml.zope.org/namespaces/metal"
    metal:use-macro="theme.layout.macros['master']">
<body>
    <metal:header fill-slot="header">
        ...
    </metal:header>
    <metal:main fill-slot="main">
        ...
    </metal:main>
</body>
</html>
于 2012-06-14T00:06:31.453 に答える
0

ここでテンプレートを作成します。

<proj>/<proj>/templates/base.pt

内容付き:

<html>
  <body>
    <div metal:define-slot="content"></div> 
  </body>
</html>

ここでテンプレートを使用します:

<proj>/<proj>/templates/about_us.pt

内容を挿入することによって:

<div metal:use-macro="load: base.pt">
    <div metal:fill-slot="content">
        <p>Hello World.</p>
    </div>
</div>
于 2013-10-01T04:31:28.020 に答える