~unifield-team/unifield-web/web_aio_24

« back to all changes in this revision

Viewing changes to openerp/addons/base/controllers/templates/tree.mako

  • Committer: ame (Tiny)
  • Date: 2009-11-09 12:42:57 UTC
  • Revision ID: ame@tinyerp.com-20091109124257-b1mscw0rn779ols5
[IMP] initial work on addons
        - seperated common framework api
        - created `base` addon
        - auto-load controllers based on `_cp_path` attribute

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<%inherit file="/base/controllers/templates/base.mako"/>
 
1
<%inherit file="/controllers/templates/base.mako"/>
2
2
 
3
3
<%def name="header()">
4
4
    <title>${tree.string}</title>
7
7
 
8
8
<%def name="content()">
9
9
 
10
 
<%include file="/base/controllers/templates/header.mako"/>
 
10
<%include file="/controllers/templates/header.mako"/>
11
11
 
12
12
<table id="treeview" class="view" width="100%" border="0" cellpadding="0" cellspacing="0">
13
13
    <tr>
73
73
    var TREEVIEW = new TreeView(${tree.id});
74
74
</script>
75
75
 
76
 
<%include file="/base/controllers/templates/footer.mako"/>
 
76
<%include file="/controllers/templates/footer.mako"/>
77
77
 
78
78
</%def>