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