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