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