goa/test/data/views.py
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Mon, 14 Sep 2009 18:28:01 +0200 (2009-09-14)
branch3.5
changeset 3215 bf30ab5ba6ee
parent 1977 606923dff11b
child 4023 eae23c40627a
child 4212 ab6573088b4a
permissions -rw-r--r--
fix workflow graph views and tabs for the new wf system, remove useless view and action (actually useless since introduction of tabbed entity type view
# -*- coding: utf-8 -*-
"""

:organization: Logilab
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
import os
os.environ["DJANGO_SETTINGS_MODULE"] = 'data.settings'

from django import template


def encode_output(self, output):
    # Check type so that we don't run str() on a Unicode object
    if not isinstance(output, basestring):
        return unicode(output)
    return output

template.VariableNode.encode_output = encode_output

from cubicweb.common.view import StartupView

INDEX_TEMPLATE = template.Template(u'''
 <h1>hellô {{ user.login }}</h1>
''')

class MyIndex(StartupView):
    id = 'index'

    def call(self):
        ctx = template.Context({'user': self.req.user})
        return INDEX_TEMPLATE.render(ctx)