Skip to content

Commit

Permalink
[FIX] howto code samples
Browse files Browse the repository at this point in the history
  • Loading branch information
xmo-odoo committed May 19, 2014
1 parent cfc7015 commit c9d4371
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/howto/howto_website/templates-basic
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ diff --git a/controllers/my_controller.py b/controllers/my_controller.py
-""" % teaching_assistants[id]
+ cr, uid, context = http.request.cr, http.request.uid, http.request.context
+ return http.request.registry['ir.ui.view'].render(
+ cr, uid, "academy.tas", teaching_assistants[id], context=context)
+ cr, uid, "academy.ta", teaching_assistants[id], context=context)
diff --git a/views/templates.xml b/views/templates.xml
new file mode 100644
--- /dev/null
Expand Down
4 changes: 2 additions & 2 deletions doc/howto/howto_website/website-dependency
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# HG changeset patch
# Parent 1960586e8781d62d0cc8c2b7b9df7b04fb20f3ae
# Parent b2da66732141558bdf8fcc21000b98a8b67a1340

diff --git a/__openerp__.py b/__openerp__.py
--- a/__openerp__.py
Expand Down Expand Up @@ -41,7 +41,7 @@ diff --git a/controllers/my_controller.py b/controllers/my_controller.py
def ta(self, id):
- cr, uid, context = http.request.cr, http.request.uid, http.request.context
- return http.request.registry['ir.ui.view'].render(
- cr, uid, "academy.tas", teaching_assistants[id], context=context)
- cr, uid, "academy.ta", teaching_assistants[id], context=context)
+ return http.request.website.render('academy.ta', teaching_assistants[id])
diff --git a/views/templates.xml b/views/templates.xml
--- a/views/templates.xml
Expand Down

0 comments on commit c9d4371

Please sign in to comment.