[IMP] xml views: added a div for the search widget for the wall. Also modified message display: body_text is now escaped to avoid to display html.

bzr revid: tde@openerp.com-20120224151943-3kf572t86dj0ijst
This commit is contained in:
Thibault Delavallée 2012-02-24 16:19:43 +01:00
parent b964521a31
commit ddd84848ff
1 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,8 @@
<template>
<div t-name="Wall" class="oe_mail_wall">
<div class="oe_mail_wall_search">
</div>
<div class="oe_mail_wall_left">
<div class="oe_mail_wall_act">
<div class="oe_mail_wall_tweet">
@ -82,7 +84,7 @@
- <span class="oe_mail_msg_need_action">Need action by <a href="#"><t t-raw="record.need_action_user_id[1]"/></a></span>
</t>
<br />
<span class="oe_mail_msg_body"><t t-raw="record.body_text"/></span><br />
<span class="oe_mail_msg_body"><t t-esc="record.body_text"/></span><br />
<span class="oe_mail_msg_date"><t t-raw="record.date"/></span>
</p>
</div>