[FIX] website_forum: fixed toggle_correct for setting answers as correct
[odoo/odoo.git] / addons / website_forum / views / website_forum.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3     <data>
4
5 <!-- Editor custo -->
6 <template id="editor_head" inherit_id="website.editor_head"
7     name="Event Editor">
8     <xpath expr="//script[@id='website_tour_js']" position="after">
9         <script type="text/javascript" src="/website_forum/static/src/js/website.tour.forum.js"/>
10         <script type="text/javascript" src="/website_forum/static/src/js/website_forum.editor.js"/>
11     </xpath>
12 </template>
13
14 <!-- Layout add nav and footer -->
15 <template id="header_footer_custom" inherit_id="website.layout"
16     name="Footer Questions Link">
17     <xpath expr="//footer//ul[@name='products']" position="inside">
18         <li><a t-attf-href="/forum/%(website_forum.forum_help)d">Q&amp;A</a></li>
19         <li><a href="/forum">Forums</a></li>
20     </xpath>
21 </template>
22
23 <!-- Page Index -->
24 <template id="header" name="Forum Index">
25     <t t-call="website.layout">
26         <t t-set="head">
27             <link rel='stylesheet' href="/web/static/lib/jquery.textext/jquery.textext.css"/>
28             <link rel='stylesheet' href='/website_forum/static/src/css/website_forum.css'/>
29             <!--
30             FP Note: Why do we need this ? Can we remove this code?
31             The problem is that you add your script for every page, not only for the forum
32             -->
33             <script type="text/javascript" src="/website_forum/static/src/js/website_forum.js"/>
34             <script type="text/javascript" src="/web/static/lib/jquery.textext/jquery.textext.js"/>
35             <script type="text/javascript" src="/web/static/lib/ckeditor/ckeditor.js"/>
36             <script type="text/javascript">
37                 CKEDITOR.config.toolbar = [['Bold','Italic','Underline','Strike'],['NumberedList','BulletedList', 'Blockquote']
38                 ,['Outdent','Indent','Link','Unlink','Image'],] ;
39             </script>
40         </t>
41         <div class="container mt16">
42             <div class="navbar navbar-default">
43                 <div class="navbar-header">
44                     <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#oe-help-navbar-collapse">
45                         <span class="sr-only">Toggle navigation</span>
46                         <span class="icon-bar"></span>
47                         <!-- <span class="icon-bar"></span> -->
48                         <span class="icon-bar"></span>
49                     </button>
50                     <a class="navbar-brand" t-attf-href="/forum/#{slug(forum)}">
51                         <span t-field="forum.name"/>
52                     </a>
53                 </div>
54                 <div class="collapse navbar-collapse" id="oe-help-navbar-collapse">
55                     <ul class="nav navbar-nav">
56                         <li t-att-class="filters in ('all', 'unanswered','followed','question','tag') and 'active' or '' ">
57                             <a t-attf-href="/forum/#{ slug(forum) }">Questions</a>
58                         </li>
59                         <li t-att-class="searches.get('users') and 'active' or '' ">
60                             <a t-attf-href="/forum/#{ slug(forum) }/users">People</a>
61                         </li>
62                         <li t-att-class="searches.get('tags') and 'active' or '' ">
63                             <a t-attf-href="/forum/#{ slug(forum) }/tag">Tags</a>
64                         </li>
65                         <li t-att-class="searches.get('badges') and 'active' or '' ">
66                             <a t-attf-href="/forum/#{ slug(forum) }/badge">Badges</a>
67                         </li>
68                     </ul>
69                     <form class="navbar-form navbar-right" role="search" t-attf-action="/forum/#{ slug(forum) }" method="get">
70                         <div class="form-group">
71                             <input type="search" class="form-control"
72                                 name="search" placeholder="Search a question..."
73                                 t-att-value="search or ''"/>
74                             <button type="submit" class="btn btn-default">Search</button>
75                         </div>
76                     </form>
77                 </div>
78             </div>
79         </div>
80
81         <div id="wrap" class="container">
82             <div class="row">
83                 <div class="col-sm-9">
84                     <div t-foreach="notifications or []" t-as="notification" class="alert alert-success alert-dismissable">
85                         <button type="button" class="close notification_close" t-att-id="notification.id" data-dismiss="alert" aria-hidden="true">&amp;times;</button>
86                         <div t-field="notification.body"/>
87                         <a t-attf-href="/forum/#{ slug(forum) }/user/#{ slug(user) }#badges" class="fa fa-arrow-right">View Your Badges</a>
88                     </div>
89                     <t t-raw="0"/>
90                 </div>
91                 <div class="col-sm-3" id="right-column">
92                     <a t-if="not header.get('ask_hide')" class="btn btn-primary btn-lg btn-block mb16" t-attf-href="/forum/#{slug(forum)}/ask">Ask a Question</a>
93                     <div class="panel panel-default">
94                         <div class="panel-heading">
95                             <h3 class="panel-title">About This Forum</h3>
96                         </div>
97                         <div class="panel-body">
98                             <t t-raw="forum.description"/><br/>
99                             <a t-attf-href="/forum/#{slug(forum)}/faq" class="fa fa-arrow-right"> Read Guidelines</a>
100                         </div>
101                     </div>
102                     <div t-if="header.get('question_data')">
103                         <div class="panel panel-default">
104                             <div class="panel-heading text-center">
105                                 <h3 class="panel-title">Question tools</h3>
106                             </div>
107                             <div class="panel-body text-center">
108                                 <t t-call="website_mail.follow"><t t-set="object" t-value="question"/></t>
109                                 <div class="mt8">
110                                     <strong><t t-raw="len(question.message_follower_ids)"/></strong> follower(s)
111                                 </div>
112                             </div>
113                             <div class="panel-heading text-center">
114                                 <h3 class="panel-title ">Stats</h3>
115                             </div>
116                             <div class="panel-body"> 
117                                 <table class="table">
118                                     <thead><tr><td> Asked: <strong><span t-field="question.create_date" t-field-options='{"format":"short"}'/></strong></td></tr></thead>
119                                     <tr><td> Seen: <strong><t t-raw="question.views"/></strong>
120                                         <span t-if="question.views&gt;1">times</span>
121                                         <span t-if="question.views&lt;=1">time</span>
122                                     </td></tr>
123                                     <tr><td> Last updated: <strong><span t-field="question.write_date" t-field-options='{"format":"short"}'/></strong></td></tr>
124                                 </table>
125                             </div>
126                         </div>
127                     </div>
128                 </div>
129             </div>
130         </div>
131         <div class="oe_structure"/>
132     </t>
133 </template>
134
135 <!-- Display a post -->
136 <template id="display_post">
137     <div class="question clearfix">
138         <div class="pull-left text-center">
139             <div t-attf-class="box #{question.child_count and 'oe_green' or 'oe_grey'}">
140                 <span t-esc="question.child_count"/>
141                 <span t-if="question.is_correct" class="fa fa-2x fa-check-circle"/>
142                 <div t-if="question.child_count&gt;1">Answers</div>
143                 <div t-if="question.child_count&lt;=1">Answer</div>
144             </div>
145             <div class="text-muted text-center">
146                 <span t-field="question.views"/> Views
147             </div>
148         </div>
149         <div class="pull-right text-center">
150             <div class="box oe_grey">
151                 <span t-esc="question.vote_count or 0"/>
152                 <div t-if="question.vote_count&gt;1">Votes</div>
153                 <div t-if="question.vote_count&lt;=1">Vote</div>
154             </div>
155         </div>
156         <div style="margin-left: 95px;">
157             <div class="question-name">
158                 <a t-attf-href="/forum/#{ slug(forum) }/question/#{ slug(question) }" t-field="question.name"/>
159                     <span t-if="not question.active"><b> [Deleted]</b></span>
160                     <span t-if="question.state == 'close'"><b> [Closed]</b></span>
161             </div>
162             <div class="text-muted">
163                 by <a t-attf-href="/forum/#{ slug(forum) }/user/#{ question.create_uid.id }"
164                     t-field="question.create_uid" t-field-options='{"widget": "contact", "country_image": true, "fields": ["name", "country_id"]}'
165                     style="display: inline-block;"/>
166                 on <span t-field="question.write_date" t-field-options='{"format":"short"}'/>
167             </div>
168             <t t-foreach="question.tag_ids" t-as="tag">
169                 <a t-attf-href="/forum/#{ slug(forum) }/tag/#{ tag.id }/questions" class="badge" t-field="tag.name"/>
170             </t>
171         </div>
172     </div>
173 </template>
174
175 <!-- Display a post as an answer -->
176 <template id="display_post_answer">
177     <div class="clearfix">
178         <div t-attf-class="pull-left text-center mb16 box #{len(answer.vote_ids) and 'oe_green' or 'oe_grey'}">
179             <div t-esc="len(answer.vote_ids)"/>
180         </div>
181         <div class="question-name" style="margin-left: 32px;">
182             <a style="font-size: 15px;" t-attf-href="/forum/#{ slug(forum) }/question/#{ answer.parent_id.id }/#answer-#{ answer.id }" t-esc="answer.parent_id.name"/>
183             <t t-if="len(answer.website_message_ids)&gt;0">
184                 (<t t-esc="len(answer.website_message_ids)"/>
185                 <t t-if="len(answer.website_message_ids)&gt;1">Comments</t>
186                 <t t-if="len(answer.website_message_ids)&lt;=1">Comment</t>)
187             </t>
188         </div>
189     </div>
190 </template>
191
192 <!-- FAQ Layout -->
193 <template id="faq">
194     <t t-call="website_forum.header">
195         <div t-field="forum.faq"/>
196     </t>
197 </template>
198
199 <!-- All Forums Layout -->
200 <template id="forum_all">
201     <t t-call="website.layout">
202         <div class="container">
203             <h1 class="mb32">Our forums</h1>
204             <div class="row">
205                 <div t-foreach="forums" t-as="forum" class="col-sm-3 text-center mb32">
206                     <a t-attf-href="/forum/#{ slug(forum) }">
207                         <div class="fa fa-5x fa-comment mb16"/>
208                         <div t-field="forum.name"/>
209                     </a>
210                 </div>
211             </div>
212         </div>
213     </t>
214 </template>
215
216 <!-- Specific Forum Layout -->
217 <template id="forum_index" name="Forum">
218     <t t-call="website_forum.header">
219         <h1 class="page-header mt0">
220             <t t-esc="len(question_ids)"/> <span>Questions</span>
221             <t t-esc="search"/>
222             <small class="dropdown" t-if="filters in ('all', 'unanswered','followed', 'tag')">
223               <a href="#" class="dropdown-toggle" data-toggle="dropdown">
224                   <t t-if="filters == 'all'">All</t>
225                   <t t-if="filters == 'unanswered'">Unanswered</t>
226                   <t t-if="filters == 'followed'">Followed</t>
227                   <t t-if="filters == 'tag'">Tag</t>
228                   <t t-if="sorting == 'date'"> by activity date</t>
229                   <t t-if="sorting == 'answered'"> by most answered</t>
230                   <t t-if="sorting == 'vote'"> by most voted</t>
231                   <b class="caret"/>
232               </a>
233               <ul class="dropdown-menu">
234                   <li class="dropdown-header">Filter on</li>
235                   <li t-att-class="filters == 'all' and 'active' or '' ">
236                       <a t-att-href="url_for('') + '?' + keep_query( 'search', 'sorting', filters='all')">All</a>
237                   </li>
238                   <li t-att-class="filters == 'unanswered' and 'active' or '' ">
239                       <a t-att-href="url_for('') + '?' + keep_query( 'search', 'sorting', filters='unanswered')">Unanswered</a>
240                   </li>
241                   <li t-if="uid" t-att-class="filters == 'followed' and 'active' or '' ">
242                       <a t-att-href="url_for('') + '?' + keep_query( 'search', 'sorting', filters='followed')">Followed</a>
243                   </li>
244                   <li class="dropdown-header">Tags</li>
245                   <li t-if="tag" t-att-class="tag and 'active' or '' ">
246                       <a href=""><t t-esc="tag.name"/></a>
247                   </li>
248                   <li class="dropdown-header">Sort by</li>
249                   <li t-att-class="sorting == 'date' and 'active' or '' ">
250                       <a t-att-href="url_for('') + '?' + keep_query( 'search', 'filters', sorting='date')">Last activity date</a>
251                   </li>
252                   <li t-att-class="sorting == 'answered' and 'active' or '' ">
253                       <a t-att-href="url_for('') + '?' + keep_query( 'search', 'filters', sorting='answered')">Most answered</a>
254                   </li>
255                   <li t-att-class="sorting == 'vote' and 'active' or '' ">
256                       <a t-att-href="url_for('') + '?' + keep_query( 'search', 'filters', sorting='vote')">Most voted</a>
257                   </li>
258               </ul>
259             </small>
260         </h1>
261         <div t-foreach="question_ids" t-as="question" class="mb16">
262             <t t-call="website_forum.display_post"/>
263         </div>
264         <t t-call="website.pager"/>
265     </t>
266 </template>
267
268 <template id="404">
269     <t t-call="website_forum.header">
270         <div class="oe_structure oe_empty"/>
271         <h1 class="mt32">Question not found!</h1>
272         <p>Sorry, this question is not available anymore.</p>
273         <p>
274             <a t-attf-href="/forum">Return to the question list.</a>
275         </p>
276     </t>
277 </template>
278
279 <!-- Edition: ask your question -->
280 <template id="ask_question">
281     <t t-call="website_forum.header">
282         <h1 class="mt0">Ask your Question</h1>
283         <ul>
284             <li> please, try to make your question interesting to others </li>
285             <li> provide enough details and, if possible, give an example </li>
286             <li> be clear and concise, avoid unnecessary introductions (Hi, ... Thanks...) </li>
287         </ul>
288         <form t-attf-action="/forum/#{ slug(forum) }/question/new" method="post" role="form" class="tag_text">
289             <input type="text" name="question_name" required="True" t-attf-value="#{question_name}"
290                 class="form-control" placeholder="Enter your Question"/>
291             <h5 class="mt20">Please enter a descriptive question (should finish by a '?')</h5>
292             <input type="hidden" name="karma" t-attf-value="#{user.karma}" id="karma"/>
293             <textarea name="content" required="True" class="form-control load_editor">
294                 <t t-esc="question_content"/>
295             </textarea>
296             <br/>
297             <input type="text" name="question_tags" placeholder="Tags" class="form-control load_tags"/>
298             <br/>
299             <button class="btn btn-primary" id="btn_ask_your_question">Post Your Question</button>
300         </form>
301         <script type="text/javascript">
302             CKEDITOR.replace("content");
303         </script>
304     </t>
305 </template>
306
307 <!-- Edition: edit a post -->
308 <template id="edit_post">
309     <t t-call="website_forum.header">
310         <h3 t-if="not is_answer">Edit question</h3>
311         <h3 t-if="is_answer">Edit answer</h3>
312         <form t-attf-action="/forum/#{ slug(forum) }/post/save" method="post" role="form" class="tag_text">
313             <div t-if="not is_answer">
314                 <input type="text" name="question_name" id="question_name" required="True"
315                     t-attf-value="#{question.name}" class="form-control" placeholder="Edit your Question"/>
316                 <h5 class="mt20">Please enter a descriptive question (should finish by a '?')</h5>
317             </div>
318             <input type="hidden" name="karma" t-attf-value="#{user.karma}" id="karma"/>
319             <textarea name="content" required="True" class="form-control load_editor">
320                 <t t-if="is_answer"> <t t-esc="answer.content"/></t>
321                 <t t-if="not is_answer"><t t-esc="question.content"/></t>
322             </textarea>
323             <input name="question_id" t-att-value="question.id" type="hidden"/>
324             <div t-if="is_answer">
325                 <input name="answer_id" t-att-value="answer.id" type="hidden"/>
326             </div>
327             <div t-if="not is_answer">
328                 <br/>
329                 <input type="text" name="question_tag" class="form-control col-md-9 load_tags" placeholder="Tags" t-attf-value="#{tags}"/>
330                 <br/>
331             </div>
332             <button class="btn btn-primary btn-lg">Save</button>
333         </form>
334         <script type="text/javascript">
335             CKEDITOR.replace("content");
336         </script>
337     </t>
338 </template>
339
340 <!-- Moderation: close a question -->
341 <template id="close_question">
342     <t t-call="website_forum.header">
343         <h3 class=""><b>Close question</b></h3><br/>
344         <form t-attf-action="/forum/#{ slug(forum) }/question/#{slug(question)}/close" method="post" role="form">
345             <input name="post_id" t-att-value="post.id" type="hidden"/>
346             <span class="pull-left">Close the question:</span>
347             <a t-attf-href="/forum/#{ slug(forum) }/question/#{ slug(post) }" t-field="post.name"/>
348             <div class="mt16">
349                 <label class="col-md-2 control-label mb16" for="reason">Reasons:</label>
350                 <div class="col-md-9 mb16">
351                     <select class="form-control" name="reason">
352                         <t t-foreach="reasons or []" t-as="reason">
353                             <option t-att-value="reason.id" t-att-selected="reason.id == post.closed_reason_id.id"><t t-esc="reason.name"/></option>
354                         </t>
355                     </select>
356                 </div>
357             </div>
358             <div>
359                 <button class="btn btn-primary btn-lg">Close</button>
360             </div>
361         </form>
362     </t>
363 </template>
364
365 <!-- Edition: post an answer -->
366 <template id="post_answer">
367     <h3 class="mt10">Your answer</h3>
368     <p>
369         <b>Please try to give a substantial answer.</b> If you wanted to comment on the question or answer, just
370         <b>use the commenting tool.</b> Please remember that you can always <b>revise your answers</b>
371         - no need to answer the same question twice. Also, please <b>don't forget to vote</b>
372         - it really helps to select the best questions and answers!
373     </p>
374     <form t-attf-action="/forum/#{ slug(forum) }/post/#{slug(question)}/new" method="post" role="form">
375         <input type="hidden" name="karma" t-attf-value="#{user.karma}" id="karma"/>
376         <textarea name="content" class="form-control load_editor" required="True"/>
377         <button class="btn btn-primary" id="btn_ask_your_question">Post Your Answer</button>
378     </form>
379     <script type="text/javascript">
380         CKEDITOR.replace("content");
381     </script>
382 </template>
383
384 <template id="vote">
385     <div t-attf-class="box oe_grey">
386         <a t-attf-class="vote_up fa fa-thumbs-up no-decoration #{post.user_vote == 1 and 'text-success' or ''}" 
387             t-attf-data-post-id="#{post.id}" t-attf-data-forum-id="#{post.forum_id.id}" data-value="1"/>
388         <span id="vote_count" t-esc="post.vote_count"/>
389         <a t-attf-class="vote_down fa fa-thumbs-down no-decoration #{post.user_vote == -1 and 'text-warning' or ''}" 
390             t-attf-data-post-id="#{post.id}" t-attf-data-forum-id="#{post.forum_id.id}" data-value="-1"/>
391         <div>
392             votes
393         </div>
394     </div>
395 </template>
396
397 <!-- Specific Post Layout -->
398 <template id="post_description_full" name="Question Navigation">
399     <t t-call="website_forum.header">
400
401         <div t-attf-class="question #{not question.active and 'alert alert-danger' or ''}">
402             <div class="text-center pull-left">
403                 <t t-call="website_forum.vote">
404                     <t t-set="post" t-value="question"/>
405                 </t>
406                 <div class="text-muted">
407                     <span t-esc="question.child_count"/>
408                     <span t-if="question.child_count&gt;1">Answers</span>
409                     <span t-if="question.child_count&lt;=1">Answer</span>
410                 </div>
411                 <div>
412                     <a t-attf-data-forum-id="#{question.forum_id.id}" t-attf-data-post-id="#{question.id}"
413                         t-attf-class="favourite_question no-decoration fa fa-2x fa-star #{question.user_favourite and 'forum_favourite_question' or ''}"/>
414                 </div>
415             </div>
416             <div style="margin-left: 95px;">
417                 <h1 class="mt0">
418                     <span t-field="question.name"/>
419                     <span t-if="not question.active"><b> [Deleted]</b></span>
420                     <span t-if="question.state == 'close'"><b> [Closed]</b></span>
421                 </h1>
422                 <t t-raw="question.content"/>
423
424                 <div class="mt16 clearfix">
425                     <div class="pull-right">
426                         <div class="text-right">
427                             <t t-foreach="question.tag_ids" t-as="tag">
428                                 <a t-attf-href="/forum/#{ slug(forum) }/tag/#{ tag.id }/questions" class="badge" t-field="tag.name"/>
429                             </t>
430                         </div>
431                         <ul class="list-inline">
432                             <li t-if="user.id == question.create_uid.id or user.karma&gt;=50">
433                                 <a style="cursor: pointer" data-toggle="collapse" class="text-muted fa fa-comment-o"
434                                       t-attf-data-target="#comment#{ question._name.replace('.','') + '-' + str(question.id) }">
435                                     comment
436                                 </a>
437                             </li>
438                             <li t-if="question.state != 'close' and (user.id == question.create_uid.id or user.karma&gt;=100)">
439                                 <a class="text-muted fa fa-times" t-attf-href="/forum/#{ slug(forum) }/question/#{slug(question)}/ask_for_close">close</a>
440                             </li>
441                             <li t-if="question.state == 'close' and user.karma&gt;=500">
442                                 <a class="text-muted fa fa-undo" t-attf-href="/forum/#{ slug(forum) }/question/#{slug(question)/reopen">reopen</a>
443                             </li>
444                             <li t-if="user.id == question.create_uid.id or user.karma&gt;=300">
445                                 <a class="text-muted fa fa-edit" t-attf-href="/forum/#{ slug(forum) }/question/#{slug(question)}/edit">edit</a>
446                             </li>
447                             <li t-if="question.active and user.id == question.create_uid.id or user.karma&gt;=1000">
448                                 <a class="text-muted fa fa-trash-o" t-attf-href="/forum/#{ slug(forum) }/question/#{slug(question)}/delete">delete</a>
449                             </li>
450                             <li t-if="uid == question.create_uid.id and not question.active">
451                                 <a class="text-muted fa fa-trash-o" t-attf-href="/forum/#{ slug(forum) }/question/#{slug(question)}/undelete">undelete</a>
452                             </li>
453                             <li><a class="text-muted fa fa-share" href="">share</a></li>
454                         </ul>
455                     </div>
456                     <div>
457                         <span t-field="question.create_uid.image" t-field-options='{"widget": "image", "class":"pull-left img img-circle img-avatar"}'/>
458                         <div>
459                             <a t-attf-href="/forum/#{ slug(forum) }/user/#{ user.id }"
460                                 t-field="question.create_uid"
461                                 t-field-options='{"widget": "contact", "country_image": true, "fields": ["name", "country_id"]}'
462                                 style="display: inline-block;"/>
463                             <div t-field="question.create_uid" t-field-options='{"widget": "contact", "badges": true, "fields": ["karma"]}'/>
464                         </div>
465                     </div>
466                     <div class="alert alert-info" t-if="question.state == 'close'">
467                         <p class="mt32 mb32 text-center">
468                             <b>The question has been closed for the following reason "<span t-field="question.closed_reason_id.name"/>"
469                             <t t-if="question.closed_uid">
470                                 <i>by <a t-attf-href="/forum/#{ slug(forum) }/user/#{ slug(question.closed_uid) }" t-field="question.closed_uid.name"/> </i>
471                             </t>
472                             <br/>close date <span t-field="question.closed_date"/></b>
473                         </p>
474                     </div>
475                 </div>
476                 <t t-call="website_forum.post_comment">
477                     <t t-set="object" t-value="question"/>
478                 </t>
479             </div>
480         </div>
481         <hr/>
482
483         <div t-foreach="question.child_ids" t-as="answer" class="mt16 mb32">
484             <a t-attf-id="answer-#{str(answer.id)}"/>
485             <div t-attf-class="forum_answer #{answer.is_correct and 'alert alert-info answer_correct' or ''}" t-attf-id="answer_#{answer.id}" >
486                 <div class="text-center pull-left">
487                     <t t-call="website_forum.vote">
488                         <t t-set="post" t-value="answer"/>
489                     </t>
490                     <div class="text-muted">
491                         <a t-attf-class="accept_answer fa fa-2x fa-check-circle no-decoration oe_answer_true #{answer.is_correct and 'oe_answer_true' or 'oe_answer_false'}"
492                             t-attf-href="/forum/#{slug(question.forum_id)}/post/#{slug(answer)}/toggle_correct"/>
493                     </div>
494                 </div>
495                 <div style="margin-left: 95px;" class="clearfix">
496                     <t t-raw="answer.content"/>
497                     <div class="mt16">
498                         <ul class="list-inline pull-right">
499                             <li t-if="user.id == answer.create_uid.id or user.karma&gt;=50">
500                                 <a style="cursor: pointer" data-toggle="collapse" class="text-muted fa fa-comment-o"
501                                       t-attf-data-target="#comment#{ answer._name.replace('.','') + '-' + str(answer.id) }">comment
502                                 </a>
503                             </li>
504                             <li t-if="user.id == answer.create_uid.id or user.karma&gt;=300">
505                                 <a class="text-muted fa fa-edit" t-attf-href="/forum/#{slug(forum)}/post/#{slug(answer)}/edit">edit</a>
506                             </li>
507                             <li t-if="user.id == answer.create_uid.id or user.karma&gt;=1000">
508                                 <a class="text-muted fa fa-trash-o" t-attf-href="/forum/#{slug(forum)}/post/#{slug(answer)}/delete">delete</a>
509                             </li>
510                             <li t-if="user.id == answer.create_uid.id">
511                                 <a class="text-muted fa fa-magic" t-attf-href="/forum/#{slug(forum)}/post/#{slug(answer)}/convert_to_comment">Convert as a comment</a>
512                             </li>
513                             <li><a class="text-muted fa fa-share" t-attf-href="/forum/#{slug(forum)}/question/#{slug(question)}/#answer-#{ answer.id }">share</a></li>
514                         </ul>
515                         <span t-field="answer.create_uid.image" t-field-options='{"widget": "image", "class":"pull-left img img-circle img-avatar"}'/>
516                         <div>
517                             <a t-attf-href="/forum/#{ slug(forum) }/user/#{ user.id }"
518                                 t-field="answer.create_uid"
519                                 t-field-options='{"widget": "contact", "country_image": true, "fields": ["name", "country_id"]}'
520                                 style="display: inline-block;"/>
521                             <div t-field="answer.create_uid" t-field-options='{"widget": "contact", "badges": true, "fields": ["karma"]}'/>
522                             <span class="text-muted">Answered on <span t-field="answer.create_date" t-field-options='{"format":"short"}'/></span>
523                         </div>
524                     </div>
525                     <t t-call="website_forum.post_comment">
526                         <t t-set="object" t-value="answer"/>
527                     </t>
528                 </div>
529             </div>
530         </div>
531         <div t-if="not question.uid_has_answered">
532             <t t-call="website_forum.post_answer"/>
533         </div>
534         <div t-if="question.uid_has_answered" class="mb16">
535             <a class="btn btn-primary" t-attf-href="/forum/#{slug(forum)}/question/#{slug(question)}/edit_answer">Edit Your Previous Answer</a>
536             <span class="text-muted">(only one answer per question is allowed)</span>
537         </div>
538     </t>
539 </template>
540
541 <!-- Utility template: Post a Comment -->
542 <template id="post_comment">
543     <div class="row clearfix">
544         <div class="col-sm-10 col-sm-offset-2">
545             <div t-foreach="reversed(object.website_message_ids)" t-as="message" id="comment" class="oe_comment_grey" style="padding: 4px;">
546                 <small class="text-muted">
547                     <button type="button" t-if="user.karma&gt;=750" t-att-id="message.id" class="close comment_delete">&amp;times;</button>
548                     <span t-field="message.body"/>
549                         <a t-attf-href="/forum/#{slug(forum)}/user/#{message.id}"
550                             t-field="message.author_id" t-field-options='{"widget": "contact", "country_image": true, "fields": ["name", "country_id"]}'
551                             style="display: inline-block;"/>
552                         on <span t-field="message.date" t-field-options='{"format":"short"}'/>
553                 </small>
554             </div>
555             <div class="css_editable_mode_hidden">
556                 <form t-attf-id="comment#{ object._name.replace('.','') + '-' + str(object.id) }" class="collapse"
557                         t-attf-action="/forum/#{slug(forum)}/question/#{slug(object)}/comment" method="POST">
558                     <input name="post_id" t-att-value="object.id" type="hidden"/>
559                     <textarea name="comment" class="form-control" placeholder="Comment this post..."/>
560                     <button type="submit" class="btn btn-primary mt8">Post</button>
561                 </form>
562             </div>
563         </div>
564     </div>
565 </template>
566
567 <template id="tag">
568     <t t-call="website_forum.header">
569         <h1 class="mt0">
570             Tags
571         </h1>
572         <p class="text-muted">
573             A tag is a label that categorizes your question with other,
574             similar questions. Using the right tags makes it easier for
575             others to find and answer your question.
576         </p>
577         <div class="row">
578             <div class="col-sm-3 mt16" t-foreach="tags" t-as="tag">
579                 <a t-attf-href="/forum/#{ slug(forum) }/tag/#{ slug(tag) }/questions?{{ keep_query( filters='tag') }}" class="badge">
580                     <span t-field="tag.name"/>
581                 </a>
582                 <span> 
583                     X <t t-esc="tag.posts_count"/>
584                 </span>
585             </div>
586         </div>
587     </t>
588 </template>
589
590 <template id="badge">
591     <t t-call="website_forum.header">
592         <h1 class="mt0">
593             Badges
594         </h1>
595         <p>
596             Besides gaining reputation with your questions and answers,
597             you receive badges for being especially helpful. Badges
598             appear on your profile page, and your posts.
599         </p>
600         <table class="table mt32 mb64">
601             <tr t-foreach="badges" t-as="badge">
602                 <td>
603                     <a t-attf-href="/forum/#{ slug(forum) }/badge/#{ slug(badge) }" class="badge pull-left">
604                         <span t-if="badge.level == 'gold'" class="fa fa-circle badge-gold"/>
605                         <span t-if="badge.level == 'silver'" class="fa fa-circle badge-silver"/>
606                         <span t-if="badge.level == 'bronze'" class="fa fa-circle badge-bronze"/>
607                         <span t-field="badge.name"/>
608                     </a>
609                 </td><td>
610                     <b t-esc="badge.stat_count_distinct"/>
611                     <i class="text-muted">awarded users</i>
612                 </td><td>
613                     <span t-field="badge.description"/>
614                 </td>
615             </tr>
616         </table>
617     </t>
618 </template>
619
620 <template id="badge_user">
621     <t t-call="website_forum.header">
622         <h3 class="mt32 mb32"> 
623             <b>Badge "<span t-field="badge.name"/>"</b>
624         </h3>
625         <div>
626             <div class="pull-left badge">
627                 <span t-if="badge.level == 'gold'" class="fa fa-circle badge-gold"/>
628                 <span t-if="badge.level == 'silver'" class="fa fa-circle badge-silver"/>
629                 <span t-if="badge.level == 'bronze'" class="fa fa-circle badge-bronze"/>
630                 <span t-field="badge.name"/>
631             </div>
632             <span t-field="badge.description" style="margin-left:20px"/>
633         </div>
634         <h4 class="mt32">
635             <t class="pull-left" t-esc="badge.stat_count_distinct"/>
636             <span t-if="badge.stat_count_distinct&gt;1">users</span>
637             <span t-if="badge.stat_count_distinct&lt;=1">user</span>
638             received this badge:
639         </h4>
640         <div class="row">
641             <div class="col-sm-3 mt16" t-foreach="users" t-as="user">
642                 <span t-field="user.image" t-field-options='{"widget": "image", "class":"pull-left img img-circle img-avatar"}'/>
643                 <div>
644                     <a t-attf-href="/forum/#{slug(forum)}/user/#{user.id}" t-field="user.name"/>
645                 </div>
646             </div>
647         </div>
648     </t>
649 </template>
650
651 <template id="users">
652     <t t-call="website_forum.header">
653         <div class="row">
654             <div t-foreach="users" t-as="user" class="col-sm-4">
655                 <span t-field="user.image" t-field-options='{"widget": "image", "class":"pull-left img img-circle img-avatar"}'/>
656                 <div>
657                     <a t-attf-href="/forum/#{slug(forum)}/user/#{user.id}" t-field="user.name"/>
658                     <t t-if="user.country_id">
659                         <span t-field="user.country_id.image" t-field-options='{"widget": "image", "class": "country_flag"}'/>
660                     </t>
661                     <b><t t-esc="user.karma"/></b>
662                     <t t-raw="separator"/>
663                     <div>
664                         <b> badges:</b>
665                         <span class="fa fa-circle badge-gold"/>
666                         <t t-esc="user.gold_badge"/>
667                         <span class="fa fa-circle badge-silver"/>
668                         <t t-esc="user.silver_badge"/>
669                         <span class="fa fa-circle badge-bronze"/>
670                         <t t-esc="user.bronze_badge"/>
671                     </div>
672                     <t t-raw="0"/>
673                 </div>
674             </div>
675         </div>
676         <div class="pull-left">
677             <t t-call="website.pager"/>
678         </div>
679     </t>
680 </template>
681
682 <template id="edit_profile">
683     <t t-call="website_forum.header">
684         <h3>Edit Profile </h3>
685             <div class="col-md-2">
686                 <span t-field="user.image" t-field-options='{"widget": "image", "class": "img img-responsive img-circle"}'/>
687             </div>
688             <form t-attf-action="/forum/#{slug(forum)}/user/#{slug(user)}/save" method="post" role="form" class="form-horizontal">
689                 <input name="user_id" t-att-value="user.id" type="hidden"/>
690                 <label class="col-md-2 control-label mb16" for="user.name">Real name</label>
691                 <div class="col-md-7 mb16">
692                     <input type="text" class="col-md-7 mb16 form-control" name="name" required="True" t-attf-value="#{user.name}"/>
693                 </div> 
694                 <label class="col-md-2 control-label mb16" for="user.partner_id.website">Website</label>
695                 <div class="col-md-7 mb16">
696                     <input type="text" class="form-control" name="website" t-attf-value="#{user.partner_id.website or ''}"/>
697                 </div>
698                 <label class="col-md-4 control-label mb16" for="user.partner_id.email">Email</label>
699                 <div class="col-md-7 mb16">
700                     <input type="text" class="form-control" name="email" required="True" t-attf-value="#{user.partner_id.email}"/>
701                 </div>
702                 <label class="col-md-4 control-label mb16" for="user.partner_id.city">City</label>
703                 <div class="col-md-7  mb16">
704                     <input type="text" class="form-control" name="city" t-attf-value="#{user.partner_id.city or ''}"/>
705                 </div>
706                 <label class="col-md-4 control-label mb16" for="contact_name">Country</label>
707                 <div class="col-md-7 mb16">
708                     <select class="form-control" name="country">
709                         <option value="">Country...</option>
710                         <t t-foreach="countries or []" t-as="country">
711                             <option t-att-value="country.id" t-att-selected="country.id == user.partner_id.country.id"><t t-esc="country.name"/></option>
712                         </t>
713                      </select>
714                 </div>
715                 <!--Note: using website_description fiels instead of using commnt firld of partner-->
716                 <label class="col-md-4 control-label mb16" for="user.partner_id.website_description">Biography</label>
717                 <div class="col-md-7 mb16">
718                     <textarea name="description" style="min-height: 120px" required="True" 
719                         class="form-control"><t t-esc="user.partner_id.website_description"/></textarea>
720                 </div>
721                 <div class="col-sm-offset-4 col-md-4 mb16">
722                     <button class="btn btn-primary btn-lg">Update</button>
723                 </div>
724             </form>
725     </t>
726 </template>
727
728 <template id="user_detail_full">
729     <t t-call="website_forum.header">
730         <h1 class="mt0 page-header">
731             <span t-field="user.name"/>
732             <small>profile</small>
733         </h1>
734         <div class="row">
735             <div class="col-sm-2">
736                 <span t-field="user.image"
737                     t-field-options='{"widget": "image", "class": "img img-responsive img-circle"}'/>
738             </div>
739             <div class="col-sm-10">
740                 <table class="table table-condensed">
741                 <tr>
742                     <td rowspan="2" valign="top"><span class="text-muted">contributions</span></td>
743                     <td>member since</td>
744                     <td><span t-field="user.create_date" t-field-options='{"format": "short"}'/></td>
745                 </tr><tr>
746                     <td>last connection</td>
747                     <td><span t-field="user.login_date" t-field-options='{"format": "short"}'/></td>
748                 </tr>
749                 <tr>
750                     <td rowspan="2" valign="top"><span class="text-muted">bio</span></td>
751                     <td>website</td>
752                     <td>
753                         <a t-att-href="user.website" t-if="user.website">
754                             <span t-field="user.website"/>
755                         </a>
756                     </td>
757                 </tr><tr>
758                     <td>location</td>
759                     <td>
760                         <span t-field="user.city"/>
761                         <span t-if="user.city and user.country_id">, </span>
762                         <span t-field="user.country_id"/>
763                         <t t-if="user.country_id"> <span t-field="user.country_id.image" t-field-options='{"widget": "image", "class":"forum_user_flag"}'/></t>
764                         
765                     </td>
766                 </tr>
767                 <tr>
768                     <td rowspan="2" valign="top"><span class="text-muted">stats</span></td>
769                     <td>karma</td>
770                     <td><span t-field="user.karma"/></td>
771                 </tr><tr>
772                     <td>votes</td>
773                     <td>
774                         <span class="fa fa-thumbs-up"/>
775                         <span t-esc="up_votes"/>
776                         <span class="fa fa-thumbs-down"/>
777                         <span t-esc="down_votes"/>
778                     </td>
779                 </tr>
780                 </table>
781                 <div class="well well-sm">
782                     <span t-field="user.partner_id.website_description"/>
783                     <t t-if="uid == user.id">
784                         <a class="fa fa-arrow-right" t-attf-href="/forum/#{slug(forum)}/user/#{slug(user)}/edit"> Edit Your Bio</a>
785                     </t>
786                 </div>
787             </div>
788         </div>
789
790         <ul class="nav nav-tabs">
791             <li class="active">
792                 <a href="#questions" data-toggle="tab"><t t-esc="len(questions)"/> Questions</a>
793             </li>
794             <li>
795                 <a href="#answers" data-toggle="tab"><t t-esc="len(answers)"/> Answers</a>
796             </li>
797             <li t-if="uid == user.id">
798                 <a href="#favourite_question" data-toggle="tab"><t t-esc="len(favourite)"/> Favourite Questions</a>
799             </li>
800             <li t-if="uid == user.id">
801                 <a href="#followed_question" data-toggle="tab"><t t-esc="len(followed)"/> Followed Questions</a>
802             </li>
803             <li t-if="uid == user.id">
804                 <a href="#activity" data-toggle="tab">Activity</a>
805             </li>
806             <li>
807                 <a href="#badges" data-toggle="tab">Badges</a>
808             </li>
809             <li t-if="uid == user.id">
810                 <a href="#votes" data-toggle="tab">Votes</a>
811             </li>
812         </ul>
813         <div class="tab-content mt16">
814             <div class="tab-pane active" id="questions">
815                 <div class="mb16" t-foreach="questions" t-as="question">
816                     <t t-call="website_forum.display_post"/>
817                 </div>
818             </div><div class="tab-pane" id="answers">
819                 <div t-foreach="answers" t-as="answer">
820                     <t t-call="website_forum.display_post_answer"/>
821                 </div>
822             </div>
823             <div class="tab-pane" id="karma">
824                 <h1>Karma</h1>
825             </div>
826             <div class="tab-pane" id="badges">
827                 <t t-call="website_forum.user_badges"/>
828             </div>
829             <div class="tab-pane" id="favourite_question">
830                 <div t-foreach="favourite" t-as="question">
831                     <t t-call="website_forum.display_post"/>
832                 </div>
833             </div>
834             <div class="tab-pane" id="followed_question">
835                 <div t-foreach="followed" t-as="question">
836                     <t t-call="website_forum.display_post"/>
837                 </div>
838             </div>
839             <div class="tab-pane" id="votes">
840                 <t t-call="website_forum.user_votes"/>
841             </div>
842             <div class="tab-pane" id="activity">
843                 <ul class="list-unstyled">
844                     <li t-foreach="activities" t-as="activity">
845                         <span t-field="activity.date" t-field-options='{"format": "short"}'/>
846                         <span t-esc="activity.subtype_id.name" class="label label-info"/>
847                         <t t-set="post" t-value="posts[activity.res_id]"/>
848                         <span t-if="post[1]"> 
849                             <a t-attf-href="/forum/#{ slug(forum) }/question/#{ slug(post[0]) }#answer-#{ str(post[1].id) }">
850                                 <span t-esc="post[0].name"/>
851                             </a>
852                         </span>
853                         <span t-if="not post[1]">
854                             <a t-attf-href="/forum/#{ slug(forum) }/question/#{ slug(post[0]) }">
855                                 <span t-esc="post[0].name"/>
856                             </a>
857                         </span>
858                     </li>
859                 </ul>
860             </div>
861         </div>
862     </t>
863 </template>
864
865 <template id="user_badges">
866     <table class="table mt32 mb64">
867         <tr t-foreach="user.badge_ids" t-as="badge">
868             <td>
869                 <a t-attf-href="/forum/#{ slug(forum) }/badge/#{ slug(badge.badge_id) }" class="badge pull-left">
870                     <span t-if="badge.badge_id.level == 'gold'" class="fa fa-circle badge-gold"/>
871                     <span t-if="badge.badge_id.level == 'silver'" class="fa fa-circle badge-silver"/>
872                     <span t-if="badge.badge_id.level == 'bronze'" class="fa fa-circle badge-bronze"/>
873                     <span t-field="badge.badge_id.name"/>
874                 </a>
875             </td><td>
876                 <b t-esc="badge.badge_id.stat_count_distinct"/>
877                 <i class="text-muted">awarded users</i>
878             </td><td>
879                 <span t-field="badge.badge_id.description"/>
880             </td>
881         </tr>
882     </table>
883     <div class="mb16" t-if="not user.badge_ids">
884         <b>No badge yet!</b><br/>
885         <a t-attf-href="/forum/#{ slug(forum) }/badge" class="fa fa-arrow-right"> Check available badges</a>
886     </div>
887 </template>
888
889 <template id="user_votes">
890     <div t-foreach="vote_post" t-as="vote">
891         <t t-esc="vote.post_id.create_date"/>
892         <span t-if="vote.vote == '1'" class="fa fa-thumbs-up text-success" style="margin-left:30px"/>
893         <span t-if="vote.vote == '-1'" class="fa fa-thumbs-down text-warning" style="margin-left:30px"/>
894         <t t-if="vote.post_id.parent_id">
895             <a t-attf-href="/forum/#{ slug(forum) }/question/#{ vote.post_id.parent_id.id }/#answer-#{ vote.post_id.id }" t-esc="vote.post_id.parent_id.name" style="margin-left:10px"/>
896         </t>
897         <t t-if="not vote.post_id.parent_id">
898             <a t-attf-href="/forum/#{ slug(forum) }/question/#{ vote.post_id.id }" style=" color:black;margin-left:10px" t-esc="vote.post_id.name"/>
899         </t>
900     </div>
901     <div class="mb16" t-if="not vote_post">
902         <b>No vote given by you yet!</b>
903     </div>
904 </template>
905
906     </data>
907 </openerp>