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