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