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