[IMP] Tags on discussions and links
[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 custom -->
6 <template id="assets_editor" inherit_id="website.assets_editor" name="Forum Editor Assets" groups="base.group_user">
7     <xpath expr="." position="inside">
8         <script type="text/javascript" src="/website_forum/static/src/js/website_forum.editor.js"/>
9     </xpath>
10 </template>
11
12 <!-- Front-end custom css / js + ckeditor lib and customization -->
13 <template id="assets_frontend" inherit_id="website.assets_frontend" name="Forum Assets">
14     <xpath expr="." position="inside">
15         <link rel='stylesheet' href="/web/static/lib/jquery.textext/jquery.textext.css"/>
16         <link rel='stylesheet' href='/website_forum/static/src/css/website_forum.css'/>
17         <script type="text/javascript" src="/website_forum/static/src/js/website_forum.js"/>
18         <script type="text/javascript" src="/web/static/lib/jquery.textext/jquery.textext.js"/>
19         <script type="text/javascript">
20             var CKEDITOR_BASEPATH = '/web/static/lib/ckeditor/';
21         </script>
22         <script type="text/javascript" src="/web/static/lib/ckeditor/ckeditor.js"></script>
23          <script type="text/javascript">
24                 CKEDITOR.config.toolbar = [['Bold','Italic','Underline','Strike'],['NumberedList','BulletedList', 'Blockquote']
25                 ,['Outdent','Indent','Link','Unlink','Image'],] ;
26         </script>
27
28     </xpath>
29 </template>
30
31 <!-- Layout add nav and footer -->
32 <template id="header_footer_custom" inherit_id="website.footer_default"
33     name="Footer Questions Link">
34     <xpath expr="//ul[@id='products']" position="inside">
35         <li><a t-attf-href="/forum/%(website_forum.forum_help)d">Q&amp;A</a></li>
36         <li><a href="/forum">Forums</a></li>
37     </xpath>
38 </template>
39
40 <!-- helper -->
41 <template id="link_button">
42     <form method="POST" t-att-action="url">
43         <button t-attf-class="fa btn-link #{classes} #{karma and 'karma_required text-muted' or ''}" t-attf-data-karma="#{karma}">
44             <t t-esc="label"/></button>
45     </form>
46 </template>
47
48 <!-- Page Index -->
49 <template id="header" name="Forum Index">
50     <t t-call="website.layout">
51         <div t-if="is_public_user and not no_introduction_message" class="alert alert-success alert-dismissable">
52             <div class="container">
53                 <h1 class="mt0">Welcome!</h1>
54                 <div t-field="forum.description"/>
55                 <a class='btn btn-primary' t-attf-href="/web?redirect=#{ request.httprequest.url }">Register</a>
56                 <button type="button" class="btn btn-link js_close_intro" data-dismiss="alert" aria-hidden="true">Hide Intro</button>
57             </div>
58         </div>
59         <div class="container mt16 website_forum">
60             <div class="navbar navbar-default">
61                 <div class="navbar-header">
62                     <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#oe-help-navbar-collapse">
63                         <span class="sr-only">Toggle navigation</span>
64                         <span class="icon-bar"></span>
65                         <span class="icon-bar"></span>
66                     </button>
67                     <a class="navbar-brand" t-attf-href="/forum/#{slug(forum)}">
68                         <span t-field="forum.name"/>
69                     </a>
70                 </div>
71                 <div class="collapse navbar-collapse" id="oe-help-navbar-collapse">
72                     <ul class="nav navbar-nav">
73                         <li t-att-class="sorting == 'relevancy desc' and 'active' or '' ">
74                             <a t-attf-href="/forum/#{ slug(forum) }?{{ keep_query( 'search', 'post_type', 'filters', sorting='relevancy desc') }}">Trending</a>
75                         </li>
76                         <li t-att-class="sorting == 'create_date desc' and 'active' or '' ">
77                             <a t-attf-href="/forum/#{ slug(forum) }?{{ keep_query( 'search', 'post_type', 'filters', sorting='create_date desc') }}">Newest</a>
78                         </li>
79                         <li t-att-class="searches.get('users') and 'active' or '' ">
80                             <a t-attf-href="/forum/#{ slug(forum) }/users">People</a>
81                         </li>
82                         <li t-att-class="searches.get('tags') and 'active' or '' ">
83                             <a t-attf-href="/forum/#{ slug(forum) }/tag">Tags</a>
84                         </li>
85                         <li t-att-class="searches.get('badges') and 'active' or '' ">
86                             <a t-attf-href="/forum/#{ slug(forum) }/badge">Badges</a>
87                         </li>
88                         <li t-if="not is_public_user" t-att-class="searches.get('my_profile') and 'active' or '' ">
89                             <a t-attf-href="/forum/#{ slug(forum) }/user/#{uid}">My Profile</a>
90                         </li>
91                     </ul>
92                     <form class="navbar-form navbar-right" role="search" t-attf-action="/forum/#{ slug(forum) }" method="get">
93                         <div class="input-group">
94                             <input type="search" class="form-control" name="search" t-att-value="search or ''"/>
95                             <span class="input-group-btn">
96                                 <button type="submit" class="btn btn-default">Search</button>
97                             </span>
98                         </div>
99                     </form>
100                 </div>
101             </div>
102         </div>
103
104         <div id="wrap" class="container">
105             <div class="row mb16">
106                 <div class="col-sm-9">
107                     <div t-foreach="notifications or []" t-as="notification" class="alert alert-success alert-dismissable">
108                         <button type="button" class="close notification_close" t-att-id="notification.id" data-dismiss="alert" aria-hidden="true">&amp;times;</button>
109                         <div t-field="notification.body"/>
110                         <a t-attf-href="/forum/#{ slug(forum) }/user/#{ user.id }#badges" class="fa fa-arrow-right">View Your Badges</a>
111                     </div>
112                     <div t-if="not validation_email_sent and not is_public_user and user.karma == 0" class="alert alert-danger alert-dismissable">
113                         <button type="button" class="close validation_email_close" data-dismiss="alert" aria-hidden="true">&amp;times;</button>
114                         <div>
115                             <p>
116                                 It appears your email has not been verified.
117                                 <a class="send_validation_email" href="#" t-att-forum-id="forum.id">Click here to send a verification email allowing you to participate to the forum.</a>
118                             </p>
119                         </div>
120                     </div>
121                     <div t-if="validation_email_done" class="alert alert-success alert-dismissable">
122                         <button type="button" class="close validated_email_close" data-dismiss="alert" aria-hidden="true">&amp;times;</button>
123                         <div>
124                             <p>Congratulations! Your email has just been validated. You may now participate to our forums.</p>
125                         </div>
126                     </div>
127                     <t t-raw="0"/>
128                 </div>
129                 <div class="col-sm-3" id="right-column">
130                     <div t-if="not header.get('ask_hide')" t-attf-class="btn-group btn-block mb16 #{(user.karma &lt; forum.karma_ask) and 'karma_required' or ''}" t-attf-data-karma="#{forum.karma_ask}">
131                         <a type="button" class="btn btn-primary btn-lg col-sm-10" t-attf-href="/forum/#{slug(forum)}/ask?post_type=#{forum.default_post_type}">
132                             <t t-if="forum.default_post_type == 'question'">Ask a Question</t>
133                             <t t-if="forum.default_post_type == 'link'">Submit a Link</t>
134                             <t t-if="forum.default_post_type == 'discussion'">New Discussion</t>
135                         </a>
136                         <button type="button" class="btn btn-primary btn-lg col-sm-2 dropdown-toggle" data-toggle="dropdown">
137                             <span class="caret"></span>
138                             <span class="sr-only">Select Post</span>
139                         </button>
140                         <ul class="dropdown-menu" role="menu">
141                             <li t-if="forum.allow_question"><a t-attf-href="/forum/#{slug(forum)}/ask?post_type=question">Ask a Question</a></li>
142                             <li t-if="forum.allow_link"><a t-attf-href="/forum/#{slug(forum)}/ask?post_type=link">Submit a Link</a></li>
143                             <li t-if="forum.allow_discussion"><a t-attf-href="/forum/#{slug(forum)}/ask?post_type=discussion">New Discussion</a></li>
144                         </ul>
145                     </div>
146                     <div class="panel panel-default">
147                         <div class="panel-heading">
148                             <h3 class="panel-title">Keep Informed</h3>
149                         </div>
150                         <div class="panel-body">
151                             <t t-call="website_mail.follow">
152                                 <t t-set="email" t-value="user.email"/>
153                                 <t t-set="object" t-value="forum"/>
154                             </t>
155                         </div>
156                     </div>
157                     <div class="panel panel-default" id="about_forum">
158                         <div class="panel-heading">
159                             <h3 class="panel-title">About This Community</h3>
160                         </div>
161                         <div class="panel-body">
162                             <t t-raw="forum.description"/>
163                             <a t-if="not header.get('is_guidelines')" t-attf-href="/forum/#{slug(forum)}/faq" class="fa fa-arrow-right"> Read Guidelines</a>
164                             <a t-if="header.get('is_guidelines')" t-attf-href="/forum/#{slug(forum)}" class="fa fa-arrow-right"> Back to <span t-field="forum.name"/></a>
165                         </div>
166                     </div>
167                     <div t-if="header.get('question_data')">
168                         <div class="panel panel-default">
169                             <div class="panel-heading text-center">
170                                 <h3 class="panel-title">Question tools</h3>
171                             </div>
172                             <div class="panel-body text-center">
173                                 <t t-call="website_mail.follow"><t t-set="object" t-value="question"/></t>
174                                 <div class="mt8">
175                                     <strong><t t-raw="len(question.message_follower_ids)"/></strong> follower(s)
176                                 </div>
177                             </div>
178                             <div class="panel-heading text-center">
179                                 <h3 class="panel-title ">Stats</h3>
180                             </div>
181                             <div class="panel-body">
182                                 <table class="table">
183                                     <thead><tr><td> Asked: <strong><span t-field="question.create_date" t-field-options='{"format":"short"}'/></strong></td></tr></thead>
184                                     <tr><td> Seen: <strong><t t-raw="question.views"/></strong>
185                                         <span t-if="question.views&gt;1">times</span>
186                                         <span t-if="question.views&lt;=1">time</span>
187                                     </td></tr>
188                                     <tr><td> Last updated: <strong><span t-field="question.write_date" t-field-options='{"format":"short"}'/></strong></td></tr>
189                                 </table>
190                             </div>
191                         </div>
192                     </div>
193                 </div>
194             </div>
195         </div>
196         <div class="oe_structure"/>
197     </t>
198 </template>
199
200 <!-- Display a post -->
201 <template id="display_post">
202     <div class="question">
203         <div class="pull-left">
204             <t t-call="website_forum.vote">
205                 <t t-set="post" t-value="question"/>
206             </t>
207         </div>
208         <div class="question-block">
209             <div class="question-name">
210                 <t t-if="question.post_type == 'link'">
211                     <a t-att-href="question.content_link" t-raw="question.name"/>
212                 </t>
213                 <t t-if="question.post_type in ('question', 'discussion')">
214                     <a t-attf-href="/forum/#{ slug(forum) }/question/#{ slug(question) }" t-field="question.name"/>
215                 </t>
216                 <span t-if="not question.active"><b> [Deleted]</b></span>
217                 <span t-if="question.state == 'close'"><b> [Closed]</b></span>
218             </div>
219             <t t-foreach="question.tag_ids" t-as="question_tag">
220                 <a t-attf-href="/forum/#{ slug(forum) }/tag/#{slug(question_tag)}/questions">
221                     <span t-attf-class="pull-right label #{tag and tag.name == question_tag.name and 'label-primary' or 'label-default'}" t-field="question_tag.name"
222                         style="margin-right: 4px;"/>
223                 </a>
224             </t>
225             <small class="text-muted">
226                 By <span t-field="question.create_uid" t-field-options='{"widget": "contact", "country_image": true, "fields": ["name", "country_id"]}' style="display: inline-block;"/>
227                 â€¢ <span t-field="question.write_date" t-field-options='{"format":"short"}'/>
228                 â€¢ <a t-attf-href="/forum/#{ slug(forum) }/question/#{ slug(question) }">
229                     <t t-esc="question.child_count"/>
230                     <t t-if="question.child_count&gt;1">comments</t>
231                     <t t-if="question.child_count&lt;=1">comment</t>
232                 </a>
233             </small>
234         </div>
235     </div>
236 </template>
237
238 <!-- Display a post as an answer -->
239 <template id="display_post_answer">
240     <div class="clearfix">
241         <div t-attf-class="pull-left text-center mb16 #{len(answer.vote_ids) and 'oe_green' or 'oe_grey'}">
242             <div t-esc="len(answer.vote_ids)"/>
243         </div>
244         <div class="question-name" style="margin-left: 32px;">
245             <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"/>
246             <t t-if="len(answer.website_message_ids)&gt;0">
247                 (<t t-esc="len(answer.website_message_ids)"/>
248                 <t t-if="len(answer.website_message_ids)&gt;1">Comments</t>
249                 <t t-if="len(answer.website_message_ids)&lt;=1">Comment</t>)
250             </t>
251         </div>
252     </div>
253 </template>
254
255 <!-- FAQ Layout -->
256 <template id="faq">
257     <t t-call="website_forum.header">
258         <div t-field="forum.faq"/>
259     </t>
260 </template>
261
262 <!-- All Forums Layout -->
263 <template id="forum_all">
264     <t t-call="website.layout">
265         <div class="container">
266             <h1 class="mb32">Our forums</h1>
267             <div class="row">
268                 <div t-foreach="forums" t-as="forum" class="col-sm-3 text-center mb32">
269                     <a t-attf-href="/forum/#{ slug(forum) }">
270                         <div class="fa fa-5x fa-comment mb16"/>
271                         <div t-field="forum.name"/>
272                     </a>
273                 </div>
274             </div>
275         </div>
276     </t>
277 </template>
278
279 <!-- Specific Forum Layout -->
280 <template id="forum_index" name="Forum">
281     <t t-call="website_forum.header">
282         <h2 class="page-header mt0">
283             <t t-esc="question_count"/>
284                 <span t-if="post_type not in ('link','question','discussion')">Posts</span>
285                 <span t-if="post_type == 'question'">Questions</span>
286                 <span t-if="post_type == 'link'">Links</span>
287                 <span t-if="post_type == 'discussion'">Threads</span>
288             <t t-esc="search"/>
289             <small class="dropdown" t-if="filters in ('all', 'unanswered','followed', 'tag')">
290               <a href="#" class="dropdown-toggle" data-toggle="dropdown">
291                   <t t-if="filters == 'unanswered'">Unanswered</t>
292                   <t t-if="filters == 'followed'">Followed</t>
293                   <t t-if="tag"><span t-field="tag.name"/></t>
294                   <t t-if="sorting == 'relevancy desc'"> by relevancy</t>
295                   <t t-if="sorting == 'write_date desc'"> by activity date</t>
296                   <t t-if="sorting == 'create_date desc'"> by newest</t>
297                   <t t-if="sorting == 'child_count desc'"> by most answered</t>
298                   <t t-if="sorting == 'vote_count desc'"> by most voted</t>
299                   <b class="caret"/>
300               </a>
301               <ul class="dropdown-menu">
302                   <li class="dropdown-header">Filter on</li>
303                   <li t-att-class="filters == 'all' and 'active' or '' ">
304                       <a t-att-href="url_for('') + '?' + keep_query( 'search', 'sorting', filters='all')">All</a>
305                   </li>
306                   <li t-att-class="filters == 'unanswered' and 'active' or '' ">
307                       <a t-att-href="url_for('') + '?' + keep_query( 'search', 'sorting', filters='unanswered')">Unanswered</a>
308                   </li>
309                   <li t-if="uid" t-att-class="filters == 'followed' and 'active' or '' ">
310                       <a t-att-href="url_for('') + '?' + keep_query( 'search', 'sorting', filters='followed')">Followed</a>
311                   </li>
312                   <li t-if="tag" class="dropdown-header">Tags</li>
313                   <li t-if="tag" t-att-class="tag and 'active' or '' ">
314                       <a href=""><t t-esc="tag.name"/></a>
315                   </li>
316                   <li class="dropdown-header">Sort by</li>
317                   <li t-att-class="sorting == 'relevancy desc' and 'active' or '' ">
318                       <a t-att-href="url_for('') + '?' + keep_query( 'search', 'filters', sorting='relevancy desc')">Relevancy</a>
319                   </li>
320                   <li t-att-class="sorting == 'write_date desc' and 'active' or '' ">
321                       <a t-att-href="url_for('') + '?' + keep_query( 'search', 'filters', sorting='write_date desc')">Last activity date</a>
322                   </li>
323                   <li t-att-class="sorting == 'create_date desc' and 'active' or '' ">
324                       <a t-att-href="url_for('') + '?' + keep_query( 'search', 'filters', sorting='create_date desc')">Newest</a>
325                   </li>
326                   <li t-att-class="sorting == 'child_count desc' and 'active' or '' ">
327                       <a t-att-href="url_for('') + '?' + keep_query( 'search', 'filters', sorting='child_count desc')">Most answered</a>
328                   </li>
329                   <li t-att-class="sorting == 'vote_count desc' and 'active' or '' ">
330                       <a t-att-href="url_for('') + '?' + keep_query( 'search', 'filters', sorting='vote_count desc')">Most voted</a>
331                   </li>
332               </ul>
333             </small>
334         </h2>
335         <div t-foreach="question_ids" t-as="question" class="mb16">
336             <t t-call="website_forum.display_post"/>
337         </div>
338         <t t-call="website.pager"/>
339     </t>
340 </template>
341
342 <template id="404">
343     <t t-call="website_forum.header">
344         <div class="oe_structure oe_empty"/>
345         <h1 class="mt32">Question not found!</h1>
346         <p>Sorry, this question is not available anymore.</p>
347         <p>
348             <a t-attf-href="/forum">Return to the question list.</a>
349         </p>
350     </t>
351 </template>
352
353 <!-- Edition: Post Article -->
354 <template id="new_link">
355     <t t-call="website_forum.header">
356         <h1 class="mt0">Submit a Link</h1>
357         <p class="mb32">
358             Share an awesome link. Your post will appear in the 'Newest' top-menu.
359             If the community vote on your post, it will get traction by being promoted
360             in the homepage.
361         </p><p>
362             We keep a high level of quality in showcased posts, only 20% of the submited
363             posts will be featured.
364         </p>
365         <form t-attf-action="/forum/#{ slug(forum) }/new?post_type=link" method="post" role="form" class="tag_text form-horizontal">
366             <input type="hidden" name="karma" t-attf-value="#{user.karma}" id="karma"/>
367             <div class="form-group">
368                 <label class="col-sm-2 control-label" for="content_link">URL to Share</label>
369                 <div class="col-sm-8">
370                     <input type="text" name="post_name" required="True" t-attf-value="#{post_name}"
371                         class="form-control mb16 link_url" placeholder="e.g. https://www.odoo.com"/>
372                 </div>
373             </div>
374             <div class="form-group">
375                 <label class="col-sm-2 control-label" for="post_name">Post Title</label>
376                 <div class="col-sm-8">
377                     <input type="text" name="content" readonly="True" required="True" t-attf-value="#{content}"
378                         class="form-control"/>
379                 </div>
380             </div>
381             <div class="form-group">
382                 <label class="col-sm-2 control-label" for="post_tags">Tags</label>
383                 <div class="col-sm-8">
384                     <input type="text" name="post_tags" readonly="True" class="form-control js_select2"/>
385                 </div>
386             </div>
387             <div class="form-group">
388                 <div class="col-sm-offset-2 col-sm-8">
389                     <button class="btn btn-primary" disabled="True" id="btn_post_your_article">Post Your Article</button>
390                 </div>
391             </div>
392         </form>
393     </t>
394 </template>
395
396 <!-- Edition: Post your Discussion Topic -->
397 <template id="new_discussion">
398     <t t-call="website_forum.header">
399         <h1 class="mt0">New Topic</h1>
400         <p>
401             <b>Share</b> Something Awesome.
402         </p>
403         <form t-attf-action="/forum/#{slug(forum)}/new?post_type=discussion" method="post" role="form" class="tag_text">
404             <input type="text" name="post_name" required="True" t-attf-value="#{post_name}"
405                 class="form-control mb16" placeholder="Your Discussion Title..."/>
406             <input type="hidden" name="karma" t-attf-value="#{user.karma}" id="karma"/>
407             <textarea name="content" id="content" required="True" class="form-control load_editor">
408                 <t t-esc="question_content"/>
409             </textarea>
410             <br/>
411             <input type="text" name="post_tags" placeholder="Tags" class="form-control js_select2"/>
412             <br/><br/>
413             <button class="btn btn-primary">Post Your Topic</button>
414         </form>
415     </t>
416 </template>
417
418 <!-- Edition: ask your question -->
419 <template id="new_question">
420     <t t-call="website_forum.header">
421         <h1 class="mt0">Ask Your Question</h1>
422         <p>
423             To improve your chance getting an answer:
424         </p>
425         <ul>
426             <li>Set a clear, explicit and concise question title
427                 (check
428                 <a href="#" data-placement="top" data-toggle="popover" data-content="Inventory Date Problem, Task remaining hours, Can you help solve solve my tax computation problem in Canada?" title="Click to get bad question samples">bad examples</a>
429                 and
430                 <a href="#" data-placement="bottom" data-toggle="popover" data-content="How to create a physical inventory at an anterior date?, How is the 'remaining hours' field computed on tasks?, How to configure TPS and TVQ's canadian taxes?" title="Click to get good question titles">good examples</a>
431                 ),
432             </li>
433             <li>Avoid unnecessary introductions (Hi,... Please... Thanks...),</li>
434             <li>Provide enough details and, if possible, give an example.</li>
435         </ul>
436         <form t-attf-action="/forum/#{slug(forum)}/new?post_type=question" method="post" role="form" class="tag_text">
437             <input type="text" name="post_name" required="True" t-attf-value="#{post_name}"
438                 class="form-control mb16" placeholder="Your Question Title..."/>
439             <input type="hidden" name="karma" t-attf-value="#{user.karma}" id="karma"/>
440
441             <textarea name="content" required="True" id="content" class="form-control load_editor">
442                 <t t-esc="question_content"/>
443             </textarea>
444             <br/>
445             <input type="hidden" name="karma_retag" t-attf-value="#{forum.karma_retag}" id="karma_retag"/>
446             <input type="hidden" name="post_tags" placeholder="Tags" class="form-control js_select2"/>
447             <br/><br/>
448             <button t-attf-class="btn btn-primary #{(user.karma &lt; forum.karma_ask) and 'karma_required' or ''}"
449                 t-att-data-karma="forum.karma_ask">Post Your Question</button>
450         </form>
451     </t>
452 </template>
453
454 <!-- Edition: edit a post -->
455 <template id="edit_post">
456     <t t-call="website_forum.header">
457         <h3 t-if="not is_answer">Edit <span t-field="post.post_type"/></h3>
458         <h3 t-if="is_answer">Edit reply</h3>
459         <form t-attf-action="/forum/#{slug(forum)}/post/#{slug(post)}/save" method="post" role="form" class="tag_text">
460             <div t-if="not is_answer">
461                 <input type="text" name="post_name" required="True"
462                     t-attf-value="#{post.name}" class="form-control mb8" placeholder="Edit your Post"/>
463                 <h5 t-if="post.post_type == 'question'" class="mt20">Please enter a descriptive question (should finish by a '?')</h5>
464             </div>
465             <input type="hidden" name="karma" t-attf-value="#{user.karma}" id="karma"/>
466             <input type="hidden" name="karma_retag" t-attf-value="#{forum.karma_retag}" id="karma_retag"/>
467             <textarea name="content" id="content" required="True" class="form-control load_editor">
468                 <t t-esc="post.content"/>
469             </textarea>
470             <div t-if="not is_answer">
471                 <br/>
472                 <input type="text" name="post_tag" class="form-control col-md-9 js_select2" placeholder="Tags" t-attf-value="#{tags}"/>
473                 <br/>
474             </div>
475             <button class="btn btn-primary btn-lg">Save</button>
476         </form>
477     </t>
478 </template>
479
480 <!-- Moderation: close a post -->
481 <template id="close_post">
482     <t t-call="website_forum.header">
483         <h1 class="mt0">Close Post</h1>
484         <p class="text-muted">
485             If you close this post, it will be hidden for most users. Only
486             users having a high karma can see closed posts to moderate
487             them.
488         </p>
489         <form t-attf-action="/forum/#{ slug(forum) }/question/#{slug(question)}/close" method="post" role="form" class="form-horizontal mt32 mb64">
490             <input name="post_id" t-att-value="question.id" type="hidden"/>
491             <div class="form-group">
492                 <label class="col-md-3 control-label" for="reason">Post:</label>
493                 <div class="col-md-8 mt8">
494                     <span t-field="question.name"/>
495                 </div>
496             </div>
497             <div class="form-group">
498                 <label class="col-md-3 control-label" for="reason">Reason:</label>
499                 <div class="col-md-8">
500                     <select class="form-control" name="reason_id">
501                         <t t-foreach="reasons or []" t-as="reason">
502                             <option t-att-value="reason.id" t-att-selected="reason.id == question.closed_reason_id.id"><t t-esc="reason.name"/></option>
503                         </t>
504                     </select>
505                 </div>
506             </div>
507             <div class="form-group">
508                 <div class="col-md-offset-3 col-md-8">
509                     <button class="btn btn-primary">Close post</button>
510                     <span class="text-muted">or</span>
511                     <a class="btn btn-link" t-attf-href="/forum/#{ slug(forum) }/question/#{ slug(question) }">back to post</a>
512                 </div>
513             </div>
514         </form>
515     </t>
516 </template>
517
518 <!-- Edition: post a reply -->
519 <template id="post_reply">
520     <div class="css_editable_mode_hidden">
521         <form t-attf-id="reply#{ object._name.replace('.','') + '-' + str(object.id) }" class="collapse oe_comment_grey"
522             t-attf-action="/forum/#{ slug(forum) }/#{slug(object)}/reply" method="post" role="form">
523             <h3 class="mt8">Your Reply</h3>
524             <input type="hidden" name="karma" t-attf-value="#{user.karma}" id="karma"/>
525             <textarea name="content" t-attf-id="content-#{str(object.id)}" class="form-control load_editor" required="True"/>
526             <button class="btn btn-primary">Post Comment</button>
527         </form>
528     </div>
529 </template>
530
531 <!-- Edition: post an answer -->
532 <template id="post_answer">
533     <h3 class="mt8">Your Answer</h3>
534     <p t-if="question.post_type == 'question'">
535         <b>Please try to give a substantial answer.</b> If you wanted to comment on the question or answer, just
536         <b>use the commenting tool.</b> Please remember that you can always <b>revise your answers</b>
537         - no need to answer the same question twice. Also, please <b>don't forget to vote</b>
538         - it really helps to select the best questions and answers!
539     </p>
540     <form t-attf-action="/forum/#{ slug(forum) }/#{slug(question)}/reply" method="post" role="form">
541         <input type="hidden" name="karma" t-attf-value="#{user.karma}" id="karma"/>
542         <textarea name="content" t-attf-id="content-#{str(question.id)}" class="form-control load_editor" required="True"/>
543         <button t-attf-class="btn btn-primary mt16 #{not question.can_answer and 'karma_required' or ''}"
544             t-att-data-karma="question.forum_id.karma_answer">Post Answer</button>
545     </form>
546 </template>
547
548 <template id="vote">
549     <div class="vote text-center">
550         <a t-attf-class="vote_up fa fa-caret-up no-decoration #{post.user_vote == 1 and 'text-success' or ''} #{((post.user_vote == 1 and not post.can_downvote) or not post.can_upvote) and 'karma_required' or ''}"
551             t-attf-data-karma="#{post.user_vote == 1 and post.forum_id.karma_downvote or post.forum_id.karma_upvote}"
552             t-attf-data-href="/forum/#{slug(post.forum_id)}/post/#{slug(post)}/upvote"/>
553         <div class="vote_count text-muted" t-esc="post.vote_count"/>
554         <a t-attf-class="vote_down fa fa-caret-down no-decoration #{post.user_vote == -1 and 'text-warning' or ''} #{((post.user_vote == -1 and not post.can_upvote) or not post.can_downvote) and 'karma_required' or ''}"
555             t-attf-data-karma="#{post.user_vote == -1 and post.forum_id.karma_upvote or post.forum_id.karma_downvote}"
556             t-attf-data-href="/forum/#{slug(post.forum_id)}/post/#{slug(post)}/downvote"/>
557         <t t-raw="0"/>
558     </div>
559 </template>
560
561 <!-- Specific Post Layout -->
562 <template id="post_description_full" name="Question Navigation">
563     <t t-call="website_forum.header">
564         <div t-attf-class="question">
565             <div class="pull-left">
566                 <t t-call="website_forum.vote">
567                     <t t-set="post" t-value="question"/>
568                     <div class="mt4">
569                         <a t-attf-data-href="/forum/#{slug(question.forum_id)}/question/#{slug(question)}/toggle_favourite"
570                             t-attf-class="favourite_question no-decoration fa fa-2x fa-star #{question.user_favourite and 'forum_favourite_question' or ''}"/>
571                     </div>
572                 </t>
573             </div>
574             <div t-attf-class="question-block #{not question.active and 'alert alert-danger' or ''}">
575                 <h1 class="mt0 mb0">
576                     <t t-if="question.post_type == 'link'">
577                         <a t-att-href="question.content_link" t-raw="question.name"/>
578                     </t>
579                     <t t-if="question.post_type in ('question', 'discussion')">
580                         <a t-attf-href="/forum/#{ slug(forum) }/question/#{ slug(question) }" t-field="question.name"/>
581                     </t>
582                     <span t-if="not question.active"><b> [Deleted]</b></span>
583                     <span t-if="question.state == 'close'"><b> [Closed]</b></span>
584                 </h1>
585                 <div class="pull-right">
586                     <div class="text-right">
587                         <t t-foreach="question.tag_ids" t-as="tag">
588                             <a t-attf-href="/forum/#{ slug(forum) }/tag/#{ tag.id }/questions" class="label label-default" t-field="tag.name"/>
589                         </t>
590                     </div>
591                 </div>
592                 <div class="text-muted mb16">
593                     By
594                     <a t-attf-href="/forum/#{ slug(forum) }/user/#{ question.create_uid.id }"
595                         t-field="question.create_uid"
596                         t-field-options='{"widget": "contact", "country_image": true, "fields": ["name", "country_id"]}'
597                         style="display: inline-block;"/>
598                     on <span t-field="question.create_date" t-field-options='{"format":"short"}'/>
599                     â€¢ <span t-field="question.views"/> views
600                 </div>
601
602                 <div class="alert alert-info text-center" t-if="question.state == 'close'">
603                     <p class="mt16">
604                         <b>The <i t-field="question.post_type"/> has been closed<t t-if="question.closed_reason_id"> for reason: <i t-esc="question.closed_reason_id.name"/></t></b>
605                     </p>
606                     <t t-if="question.closed_uid">
607                         <b>by <a t-attf-href="/forum/#{ slug(forum) }/user/#{ question.closed_uid.id }"
608                             t-field="question.closed_uid"
609                             t-field-options='{"widget": "contact", "fields": ["name"]}'
610                             style="display: inline-block;"/></b>
611                     </t>
612                     <b>on <span t-field="question.closed_date"/></b>
613                     <div class="mt16 mb24 text-center">
614                         <t t-call="website_forum.link_button">
615                             <t t-set="url" t-value="'/forum/' + slug(forum) + '/question/' + slug(question) + '/reopen'"/>
616                             <t t-set="label" t-value="'Reopen'"/>
617                             <t t-set="classes" t-value="'fa-arrow-right'"/>
618                             <t t-set="karma" t-value="not question.can_close and question.karma_close or 0"/>
619                         </t>
620                     </div>
621                 </div>
622                 <div t-if="question.post_type != 'link' and question.create_uid.karma &gt;= forum.karma_dofollow"><span t-field="question.content" class="oe_no_empty"/></div>
623                 <div t-if="question.post_type != 'link' and question.create_uid.karma &lt; forum.karma_dofollow"><span t-field="question.content" class="oe_no_empty" t-field-options='{"nofollow": 1}'/></div>
624
625                 <div class="clearfix">
626                     <ul class="pull-right list-inline mb0">
627                         <li t-if="question.state != 'close'">
628                             <t t-call="website_forum.link_button">
629                                 <t t-set="url" t-value="'/forum/' + slug(forum) +'/question/' + slug(question) + '/ask_for_close'"/>
630                                 <t t-set="label" t-value="'Close'"/>
631                                 <t t-set="classes" t-value="'fa-times'"/>
632                                 <t t-set="karma" t-value="not question.can_close and question.karma_close or 0"/>
633                             </t>
634                         </li>
635                         <li t-if="question.state == 'close'">
636                             <t t-call="website_forum.link_button">
637                                 <t t-set="url" t-value="'/forum/' + slug(forum) +'/question/' + slug(question) + '/reopen'"/>
638                                 <t t-set="label" t-value="'Reopen'"/>
639                                 <t t-set="classes" t-value="'fa-undo'"/>
640                                 <t t-set="karma" t-value="not question.can_close and question.karma_close or 0"/>
641                             </t>
642                         </li>
643                         <li>
644                             <t t-call="website_forum.link_button">
645                                 <t t-set="url" t-value="'/forum/' + slug(forum) +'/post/' + slug(question) + '/edit'"/>
646                                 <t t-set="label" t-value="'Edit'"/>
647                                 <t t-set="classes" t-value="'fa-edit'"/>
648                                 <t t-set="karma" t-value="not question.can_edit and question.karma_edit or 0"/>
649                             </t>
650                         </li>
651                         <li t-if="question.active">
652                             <t t-call="website_forum.link_button">
653                                 <t t-set="url" t-value="'/forum/' + slug(forum) +'/question/' + slug(question) + '/delete'"/>
654                                 <t t-set="label" t-value="'Delete'"/>
655                                 <t t-set="classes" t-value="'fa-trash-o'"/>
656                                 <t t-set="karma" t-value="not question.can_unlink and question.karma_unlink or 0"/>
657                             </t>
658                         </li>
659                         <li t-if="not question.active">
660                             <t t-call="website_forum.link_button">
661                                 <t t-set="url" t-value="'/forum/' + slug(forum) +'/question/' + slug(question) + '/undelete'"/>
662                                 <t t-set="label" t-value="'Undelete'"/>
663                                 <t t-set="classes" t-value="'fa-trash-o'"/>
664                                 <t t-set="karma" t-value="not question.can_unlink and question.karma_unlink or 0"/>
665                             </t>
666                         </li>
667                     </ul>
668                     <ul class="list-inline mb0">
669                         <li t-if="question.post_type == 'question'">
670                             <a style="cursor: pointer" t-att-data-toggle="question.can_comment and 'collapse' or ''"
671                                 t-attf-class="fa fa-comment-o #{not question.can_comment and 'karma_required text-muted' or ''}"
672                                 t-attf-data-karma="#{not question.can_comment and question.karma_comment or 0}"
673                                 t-attf-data-target="#comment#{ question._name.replace('.','') + '-' + str(question.id) }">
674                                 Comment
675                             </a>
676                         </li>
677                     </ul>
678                 </div>
679
680                 <t t-call="website_forum.post_comment">
681                     <t t-set="object" t-value="question"/>
682                 </t>
683             </div>
684         </div>
685         <div t-foreach="question.child_ids" t-as="post_answer" class="mt16 mb32">
686             <hr class="mb4 mt4"/>
687             <t t-call="website_forum.post_answers">
688                 <t t-set="answer" t-value="post_answer"/>
689             </t>
690         </div>
691         <div t-if="question.post_type != 'question' or question.post_type == 'question' and not question.uid_has_answered and question.state != 'close' and question.active != False">
692             <t t-call="website_forum.post_answer"/>
693         </div>
694         <div t-if="question.post_type == 'question' and question.uid_has_answered" class="mb16">
695             <a class="btn btn-primary" t-attf-href="/forum/#{slug(forum)}/question/#{slug(question)}/edit_answer">Edit Your Previous Answer</a>
696             <span class="text-muted">(only one answer per question is allowed)</span>
697         </div>
698     </t>
699 </template>
700
701 <template id="post_answers">
702     <a t-attf-id="answer-#{str(answer.id)}"/>
703     <div t-attf-class="forum_answer" t-attf-id="answer_#{answer.id}" >
704         <div class="pull-left">
705             <t t-call="website_forum.vote">
706                 <t t-set="post" t-value="answer"/>
707                 <div t-if="question.post_type == 'question'" class="mt4">
708                     <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'} #{not answer.can_accept and 'karma_required' or ''}"
709                         t-attf-data-karma="#{answer.karma_accept}"
710                         t-attf-data-href="/forum/#{slug(question.forum_id)}/post/#{slug(answer)}/toggle_correct"/>
711                 </div>
712             </t>
713         </div>
714         <div class="question-block">
715             <div class="pull-right author-box">
716                 <img class="pull-left img img-rounded img-avatar" t-attf-src="/forum/user/#{user.id}/avatar"/>
717                 <a t-attf-href="/forum/#{ slug(forum) }/user/#{ answer.create_uid.id }"
718                     t-field="answer.create_uid"
719                     t-field-options='{"widget": "contact", "country_image": true, "fields": ["name", "country_id"]}'
720                     style="display: inline-block;"/>
721                 <div class="text-muted">On <span t-field="answer.create_date" t-field-options='{"format":"short"}'/></div>
722             </div>
723             <div class="clearfix" t-if="answer.create_uid.karma &gt;= forum.karma_dofollow"><span t-field="answer.content" class="oe_no_empty"/></div>
724             <div class="clearfix" t-if="answer.create_uid.karma &lt; forum.karma_dofollow"><span t-field="answer.content" class="oe_no_empty" t-field-options='{"nofollow": 1}'/></div>
725             <div class="clearfix">
726                 <ul class="list-inline pull-right mb0">
727                     <li>
728                         <t t-call="website_forum.link_button">
729                             <t t-set="url" t-value="'/forum/' + slug(forum) + '/post/' + slug(answer) + '/edit'"/>
730                             <t t-set="label" t-value="'Edit'"/>
731                             <t t-set="classes" t-value="'fa fa-edit'"/>
732                             <t t-set="karma" t-value="not answer.can_edit and answer.karma_edit or 0"/>
733                         </t>
734                     </li>
735                     <li>
736                         <t t-call="website_forum.link_button">
737                             <t t-set="url" t-value="'/forum/' + slug(forum) + '/post/' + slug(answer) + '/delete'"/>
738                             <t t-set="label" t-value="'Delete'"/>
739                             <t t-set="classes" t-value="'fa-trash-o'"/>
740                             <t t-set="karma" t-value="not answer.can_unlink and answer.karma_unlink or 0"/>
741                         </t>
742                     </li>
743                     <li t-if="question.post_type == 'question'">
744                         <t t-call="website_forum.link_button">
745                             <t t-set="url" t-value="'/forum/' + slug(forum) + '/post/' + slug(answer) + '/convert_to_comment'"/>
746                             <t t-set="label" t-value="'Convert as a comment'"/>
747                             <t t-set="classes" t-value="'fa-magic'"/>
748                             <t t-set="karma" t-value="not answer.can_comment_convert and answer.karma_comment_convert or 0"/>
749                         </t>
750                     </li>
751                 </ul>
752                 <ul class="list-inline mb0">
753                     <li t-if="question.post_type == 'question'">
754                         <a t-attf-class="fa fa-comment-o #{not answer.can_comment and 'karma_required text-muted' or ''}"
755                             t-attf-data-karma="#{not answer.can_comment and answer.karma_comment or 0}"
756                             style="cursor: pointer" t-att-data-toggle="answer.can_comment and 'collapse' or ''"
757                             t-attf-data-target="#comment#{ answer._name.replace('.','') + '-' + str(answer.id) }"> Comment
758                         </a>
759                     </li>
760                     <li t-if="question.post_type != 'question'">
761                         <a t-attf-class="fa fa-comment-o #{not answer.can_comment and 'karma_required text-muted' or ''}"
762                             t-attf-data-karma="#{not answer.can_comment and answer.karma_comment or 0}"
763                             style="cursor: pointer" data-toggle="collapse"
764                             t-attf-data-target="#reply#{ answer._name.replace('.','') + '-' + str(answer.id) }"> Reply
765                         </a>
766                     </li>
767                 </ul>
768
769             </div>
770             <hr class="mt4 mb4"/>
771
772             <t t-if="answer.post_type == 'question'" t-call="website_forum.post_comment">
773                 <t t-set="object" t-value="answer"/>
774             </t>
775             <div t-if="answer.post_type != 'question' and question.state != 'close' and question.active != False">
776                 <t t-call="website_forum.post_reply">
777                     <t t-set="object" t-value="answer"/>
778                 </t>
779             </div>
780             <div t-foreach="answer.child_ids" t-as="child_answer" class="mt4 mb4">
781                 <t t-call="website_forum.post_answers">
782                     <t t-set="answer" t-value="child_answer"/>
783                 </t>
784             </div>
785         </div>
786     </div>
787 </template>
788
789 <!-- Utility template: Post a Comment -->
790 <template id="post_comment">
791     <div class="row clearfix">
792         <div class="col-sm-10 col-sm-offset-2">
793             <div t-foreach="reversed(object.website_message_ids)" t-as="message" class="comment oe_comment_grey">
794                 <small class="text-muted">
795                     <t t-set="required_karma" t-value="message.author_id.id == user.partner_id.id and object.forum_id.karma_comment_unlink_own or object.forum_id.karma_comment_unlink_all"/>
796                     <t t-call="website_forum.link_button">
797                         <t t-set="url" t-value="'/forum/' + slug(forum) + '/post/' + slug(object) + '/comment/' + slug(message) + '/delete'"/>
798                         <t t-set="label" t-value="' '"/>
799                         <t t-set="karma" t-value="user.karma&lt;required_karma and required_karma or 0"/>
800                         <t t-set="classes" t-value="'close comment_delete fa-times'"/>
801                     </t>
802
803                     <div t-if="message.create_uid.karma &gt;= forum.karma_dofollow"><span t-field="message.body" class="oe_no_empty"/></div>
804                     <div t-if="message.create_uid.karma &lt; forum.karma_dofollow"><span t-field="message.body" class="oe_no_empty" t-field-options='{"nofollow": 1}'/></div>
805                     <t t-set="required_karma" t-value="message.author_id.id == user.partner_id.id and object.forum_id.karma_comment_convert_own or object.forum_id.karma_comment_convert_all"/>
806                     <t t-if="(object.parent_id and object.parent_id.state != 'close' and object.parent_id.active != False) or (not object.parent_id and object.state != 'close' and object.active != False)">
807                         <t t-set="allow_post_comment" t-value="True" />
808                     </t>
809                     <t t-if="allow_post_comment">
810                         <t t-call="website_forum.link_button" >
811                             <t t-set="url" t-value="'/forum/' + slug(forum) + '/post/' + slug(object) + '/comment/' + slug(message) + '/convert_to_answer'"/>
812                             <t t-set="label" t-value="'Convert as an answer'"/>
813                             <t t-set="karma" t-value="user.karma&lt;required_karma and required_karma or 0"/>
814                             <t t-set="classes" t-value="'fa-magic pull-right'"/>
815                         </t>
816                     </t>
817                     <a t-attf-href="/forum/#{slug(forum)}/partner/#{message.author_id.id}"
818                         t-field="message.author_id" t-field-options='{"widget": "contact", "country_image": true, "fields": ["name", "country_id"]}'
819                         style="display: inline-block;"/>
820                     on <span t-field="message.date" t-field-options='{"format":"short"}'/>
821                 </small>
822             </div>
823             <div class="css_editable_mode_hidden">
824                 <form t-attf-id="comment#{ object._name.replace('.','') + '-' + str(object.id) }" class="collapse oe_comment_grey"
825                         t-attf-action="/forum/#{slug(forum)}/post/#{slug(object)}/comment" method="POST">
826                     <input name="post_id" t-att-value="object.id" type="hidden" class="mt8"/>
827                     <textarea name="comment" class="form-control" placeholder="Comment this post..."/>
828                     <button type="submit" class="btn btn-primary mt8">Post</button>
829                 </form>
830             </div>
831         </div>
832     </div>
833 </template>
834
835 <template id="tag">
836     <t t-call="website_forum.header">
837         <h1 class="mt0">
838             Tags
839         </h1>
840         <p class="text-muted">
841             A tag is a label that categorizes your question with other,
842             similar questions. Using the right tags makes it easier for
843             others to find and answer your question.
844         </p>
845         <div class="row">
846             <div class="col-sm-3 mt16" t-foreach="tags" t-as="tag">
847                 <a t-attf-href="/forum/#{ slug(forum) }/tag/#{ slug(tag) }/questions?{{ keep_query( filters='tag') }}" class="label label-default">
848                     <span t-field="tag.name"/>
849                 </a>
850                 <span>
851                     X <t t-esc="tag.posts_count"/>
852                 </span>
853             </div>
854         </div>
855     </t>
856 </template>
857
858 <template id="badge">
859     <t t-call="website_forum.header">
860         <h1 class="mt0">
861             Badges
862         </h1>
863         <p>
864             Besides gaining reputation with your questions and answers,
865             you receive badges for being especially helpful. Badges
866             appear on your profile page, and your posts.
867         </p>
868         <table class="table mt32 mb64">
869             <tr t-foreach="badges" t-as="badge">
870                 <td>
871                     <a t-attf-href="/forum/#{ slug(forum) }/badge/#{ slug(badge) }" class="badge pull-left">
872                         <span t-if="badge.level == 'gold'" class="fa fa-circle badge-gold"/>
873                         <span t-if="badge.level == 'silver'" class="fa fa-circle badge-silver"/>
874                         <span t-if="badge.level == 'bronze'" class="fa fa-circle badge-bronze"/>
875                         <span t-field="badge.name"/>
876                     </a>
877                 </td><td>
878                     <b t-esc="badge.stat_count_distinct"/>
879                     <i class="text-muted">awarded users</i>
880                 </td><td>
881                     <span t-field="badge.description"/>
882                 </td>
883             </tr>
884         </table>
885     </t>
886 </template>
887
888 <template id="badge_user">
889     <t t-call="website_forum.header">
890         <h3 class="mt32 mb32">
891             <b>Badge "<span t-field="badge.name"/>"</b>
892         </h3>
893         <div>
894             <div class="pull-left badge">
895                 <span t-if="badge.level == 'gold'" class="fa fa-circle badge-gold"/>
896                 <span t-if="badge.level == 'silver'" class="fa fa-circle badge-silver"/>
897                 <span t-if="badge.level == 'bronze'" class="fa fa-circle badge-bronze"/>
898                 <span t-field="badge.name"/>
899             </div>
900             <span t-field="badge.description" style="margin-left:20px"/>
901         </div>
902         <h4 class="mt32">
903             <t class="pull-left" t-esc="badge.stat_count_distinct"/>
904             <span t-if="badge.stat_count_distinct&gt;1">users</span>
905             <span t-if="badge.stat_count_distinct&lt;=1">user</span>
906             received this badge:
907         </h4>
908         <div class="row">
909             <div class="col-sm-3 mt16" t-foreach="users" t-as="user">
910                 <img class="pull-left img img-circle img-avatar" t-attf-src="/forum/user/#{user.id}/avatar"/>
911                 <div>
912                     <a t-attf-href="/forum/#{slug(forum)}/user/#{user.id}" t-field="user.name"/>
913                 </div>
914             </div>
915         </div>
916     </t>
917 </template>
918
919 <template id="users">
920     <t t-call="website_forum.header">
921         <div t-foreach="users" t-as="row_users" class="row mt16">
922             <div t-foreach="row_users" t-as="user" class="col-sm-4">
923                 <img class="pull-left img img-circle img-avatar" t-attf-src="/forum/user/#{user.id}/avatar"/>
924                 <div>
925                     <a t-attf-href="/forum/#{slug(forum)}/user/#{user.id}" t-field="user.name"/>
926                     <t t-if="user.country_id">
927                         <span t-field="user.country_id.image" t-field-options='{"widget": "image", "class": "country_flag"}'/>
928                     </t>
929                     <b><t t-esc="user.karma"/></b>
930                     <t t-raw="separator"/>
931                     <div>
932                         <b> badges:</b>
933                         <span class="fa fa-circle badge-gold"/>
934                         <t t-esc="user.gold_badge"/>
935                         <span class="fa fa-circle badge-silver"/>
936                         <t t-esc="user.silver_badge"/>
937                         <span class="fa fa-circle badge-bronze"/>
938                         <t t-esc="user.bronze_badge"/>
939                     </div>
940                     <t t-raw="0"/>
941                 </div>
942             </div>
943         </div>
944         <div class="pull-left">
945             <t t-call="website.pager"/>
946         </div>
947     </t>
948 </template>
949
950 <!--Private profile-->
951 <template id="private_profile">
952     <t t-call="website_forum.header">
953         <h1 class="mt32">This profile is private!</h1>
954         <p>
955             <a t-attf-href="/forum/#{slug(forum)}">Return to the question list.</a>
956         </p>
957     </t>
958 </template>
959
960 <template id="edit_profile">
961     <t t-call="website_forum.header">
962         <h3>Edit Profile</h3>
963         <div class="row">
964             <div class="col-md-2">
965                 <img class="img img-responsive img-circle" t-attf-src="/forum/user/#{user.id}/avatar"/>
966             </div>
967             <div class="col-md-10">
968             <form t-attf-action="/forum/#{slug(forum)}/user/#{slug(user)}/save" method="post" role="form" class="form-horizontal">
969                 <input name="user_id" t-att-value="user.id" type="hidden"/>
970                 <div class="form-group">
971                     <label class="col-md-2 control-label mb16" for="user_name">Real name</label>
972                     <div class="col-md-8 mb16">
973                         <input type="text" class="form-control" name="name" id="user_name" required="True" t-attf-value="#{user.name}"/>
974                     </div>
975                 </div>
976                 <div class="form-group">
977                     <label class="col-md-2 control-label mb16" for="user_website_published" t-if="user.id == uid">Public profile</label>
978                     <div class="col-md-8 mb16" t-if="user.id == uid">
979                         <input type="checkbox" class="mt8" name="website_published" id="user_website_published" value="True" t-if="not user.website_published"/>
980                         <input type="checkbox" class="mt8" name="website_published" id="user_website_published" value="True" checked="checked" t-if="user.website_published"/>
981                     </div>
982                 </div>
983                 <div class="form-group">
984                     <label class="col-md-2 control-label mb16" for="user_website">Website</label>
985                     <div class="col-md-8 mb16">
986                         <input type="text" class="form-control" name="website" id="user_website" t-attf-value="#{user.partner_id.website or ''}"/>
987                     </div>
988                 </div>
989                 <div class="form-group">
990                     <div t-if="email_required" class="alert alert-danger alert-dismissable oe_forum_email_required">
991                         <button type="button" class="close" data-dismiss="alert">x</button>
992                         <p>Please enter a valid email address in order to receive notifications from answers or comments.</p>
993                     </div>
994                     <label class="col-md-2 control-label mb16" for="user_email">Email</label>
995                     <div class="col-md-8 mb16">
996                         <input type="text" class="form-control" name="email" id="user_email" required="True" t-attf-value="#{user.partner_id.email}"/>
997                     </div>
998                 </div>
999                 <div class="form-group">
1000                     <label class="col-md-2 control-label mb16" for="user_city">City</label>
1001                     <div class="col-md-8 mb16">
1002                         <input type="text" class="form-control" name="city" id="user_city" t-attf-value="#{user.partner_id.city or ''}"/>
1003                     </div>
1004                 </div>
1005                 <div class="form-group">
1006                     <label class="col-md-2 control-label mb16">Country</label>
1007                     <div class="col-md-8 mb16">
1008                         <select class="form-control" name="country">
1009                             <option value="">Country...</option>
1010                             <t t-foreach="countries or []" t-as="country">
1011                                 <option t-att-value="country.id" t-att-selected="country.id == user.partner_id.country_id.id"><t t-esc="country.name"/></option>
1012                             </t>
1013                          </select>
1014                     </div>
1015                 </div>
1016                 <!--Note: using website_description fiels instead of using commnt firld of partner-->
1017                 <div class="form-group">
1018                     <label class="col-md-2 control-label mb16" for="description">Biography</label>
1019                     <div class="col-md-8 mb16">
1020                         <textarea name="description" id="description" style="min-height: 120px" required="True" 
1021                             class="form-control load_editor"><t t-esc="user.partner_id.website_description"/></textarea>
1022                     </div>
1023                 </div>
1024                 <div class="col-sm-offset-2 col-md-2 mb16">
1025                     <button class="btn btn-primary btn-lg">Update</button>
1026                 </div>
1027             </form>
1028             </div>
1029         </div>
1030         <script type="text/javascript">
1031             CKEDITOR.replace("description");
1032         </script>
1033     </t>
1034 </template>
1035
1036 <template id="user_detail_full">
1037     <t t-call="website_forum.header">
1038         <h1 class="mt0 page-header">
1039             <span t-field="user.name"/>
1040             <small>profile</small>
1041             <t t-call="website.publish_management" groups="base.group_website_publisher">
1042                 <t t-set="object" t-value="user"/>
1043             </t>
1044         </h1>
1045         <div class="row">
1046             <div class="col-sm-2">
1047                 <img class="img img-responsive img-circle" t-attf-src="/forum/user/#{user.id}/avatar"/>
1048             </div>
1049             <div class="col-sm-10">
1050                 <table class="table table-condensed">
1051                 <tr>
1052                     <td rowspan="2" valign="top"><span class="text-muted">contributions</span></td>
1053                     <td>member since</td>
1054                     <td><span t-field="user.create_date" t-field-options='{"format": "short"}'/></td>
1055                 </tr><tr>
1056                     <td>last connection</td>
1057                     <td><span t-field="user.login_date" t-field-options='{"format": "short"}'/></td>
1058                 </tr>
1059                 <tr>
1060                     <td rowspan="2" valign="top"><span class="text-muted">bio</span></td>
1061                     <td>website</td>
1062                     <td>
1063                         <a t-att-href="user.website" t-if="user.website">
1064                             <span t-field="user.website"/>
1065                         </a>
1066                     </td>
1067                 </tr><tr>
1068                     <td>location</td>
1069                     <td>
1070                         <span t-field="user.city"/>
1071                         <span t-if="user.city and user.country_id">, </span>
1072                         <span t-field="user.country_id"/>
1073                         <t t-if="user.country_id"> <span t-field="user.country_id.image" t-field-options='{"widget": "image", "class": "country_flag"}'/></t>
1074
1075                     </td>
1076                 </tr>
1077                 <tr>
1078                     <td rowspan="2" valign="top"><span class="text-muted">stats</span></td>
1079                     <td>karma</td>
1080                     <td><span t-field="user.karma"/></td>
1081                 </tr><tr>
1082                     <td>votes</td>
1083                     <td>
1084                         <span class="fa fa-thumbs-up"/>
1085                         <span t-esc="up_votes"/>
1086                         <span class="fa fa-thumbs-down"/>
1087                         <span t-esc="down_votes"/>
1088                     </td>
1089                 </tr>
1090                 </table>
1091                 <div class="well well-sm">
1092                     <div t-if="user.karma &gt;= forum.karma_dofollow"><span t-field="user.partner_id.website_description" class="oe_no_empty"/></div>
1093                     <div t-if="user.karma &lt; forum.karma_dofollow"><span t-field="user.partner_id.website_description" class="oe_no_empty" t-field-options='{"nofollow": 1}'/></div>
1094                     <t t-if="uid == user.id">
1095                         <a class="fa fa-arrow-right" t-attf-href="/forum/#{slug(forum)}/user/#{slug(user)}/edit"> Edit Your Bio</a>
1096                     </t>
1097                 </div>
1098             </div>
1099         </div>
1100
1101         <ul class="nav nav-tabs">
1102             <li class="active">
1103                 <a href="#questions" data-toggle="tab"><t t-esc="count_questions"/> Questions</a>
1104             </li>
1105             <li>
1106                 <a href="#answers" data-toggle="tab"><t t-esc="count_answers"/> Answers</a>
1107             </li>
1108             <li t-if="uid == user.id">
1109                 <a href="#favourite_question" data-toggle="tab"><t t-esc="len(favourite)"/> Favourite Questions</a>
1110             </li>
1111             <li t-if="uid == user.id">
1112                 <a href="#followed_question" data-toggle="tab"><t t-esc="len(followed)"/> Followed Questions</a>
1113             </li>
1114             <li t-if="uid == user.id">
1115                 <a href="#activity" data-toggle="tab">Activity</a>
1116             </li>
1117             <li>
1118                 <a href="#badges" data-toggle="tab">Badges</a>
1119             </li>
1120             <li t-if="uid == user.id">
1121                 <a href="#votes" data-toggle="tab">Votes</a>
1122             </li>
1123         </ul>
1124         <div class="tab-content mt16">
1125             <div class="tab-pane active" id="questions">
1126                 <div class="mb16" t-foreach="questions" t-as="question">
1127                     <t t-call="website_forum.display_post"/>
1128                 </div>
1129             </div><div class="tab-pane" id="answers">
1130                 <div t-foreach="answers" t-as="answer">
1131                     <t t-call="website_forum.display_post_answer"/>
1132                 </div>
1133             </div>
1134             <div class="tab-pane" id="karma">
1135                 <h1>Karma</h1>
1136             </div>
1137             <div class="tab-pane" id="badges">
1138                 <t t-call="website_forum.user_badges"/>
1139             </div>
1140             <div class="tab-pane" id="favourite_question" t-if="uid == user.id">
1141                 <div t-foreach="favourite" t-as="question">
1142                     <t t-call="website_forum.display_post"/>
1143                 </div>
1144             </div>
1145             <div class="tab-pane" id="followed_question" t-if="uid == user.id">
1146                 <div t-foreach="followed" t-as="question" class="mb16">
1147                     <t t-call="website_forum.display_post"/>
1148                 </div>
1149             </div>
1150             <div class="tab-pane" id="votes" t-if="uid == user.id">
1151                 <t t-call="website_forum.user_votes"/>
1152             </div>
1153             <div class="tab-pane" id="activity" t-if="uid == user.id">
1154                 <ul class="list-unstyled">
1155                     <li t-foreach="activities" t-as="activity">
1156                         <span t-field="activity.date" t-field-options='{"format": "short"}'/>
1157                         <span t-esc="activity.subtype_id.name" class="label label-info"/>
1158                         <t t-set="post" t-value="posts[activity.res_id]"/>
1159                         <span t-if="post[1]">
1160                             <a t-attf-href="/forum/#{ slug(forum) }/question/#{ slug(post[0]) }#answer-#{ str(post[1].id) }">
1161                                 <span t-esc="post[0].name"/>
1162                             </a>
1163                         </span>
1164                         <span t-if="not post[1]">
1165                             <a t-attf-href="/forum/#{ slug(forum) }/question/#{ slug(post[0]) }">
1166                                 <span t-esc="post[0].name"/>
1167                             </a>
1168                         </span>
1169                     </li>
1170                 </ul>
1171             </div>
1172         </div>
1173     </t>
1174 </template>
1175
1176 <template id="user_badges">
1177     <table class="table mt32 mb64">
1178         <tr t-foreach="user.badge_ids" t-as="badge">
1179             <td>
1180                 <a t-attf-href="/forum/#{ slug(forum) }/badge/#{ slug(badge.badge_id) }" class="badge pull-left">
1181                     <span t-if="badge.badge_id.level == 'gold'" class="fa fa-circle badge-gold"/>
1182                     <span t-if="badge.badge_id.level == 'silver'" class="fa fa-circle badge-silver"/>
1183                     <span t-if="badge.badge_id.level == 'bronze'" class="fa fa-circle badge-bronze"/>
1184                     <span t-field="badge.badge_id.name"/>
1185                 </a>
1186             </td><td>
1187                 <b t-esc="badge.badge_id.stat_count_distinct"/>
1188                 <i class="text-muted">awarded users</i>
1189             </td><td>
1190                 <span t-field="badge.badge_id.description"/>
1191             </td>
1192         </tr>
1193     </table>
1194     <div class="mb16" t-if="not user.badge_ids">
1195         <b>No badge yet!</b><br/>
1196         <a t-attf-href="/forum/#{ slug(forum) }/badge" class="fa fa-arrow-right"> Check available badges</a>
1197     </div>
1198 </template>
1199
1200 <template id="user_votes">
1201     <div t-foreach="vote_post" t-as="vote">
1202         <t t-esc="vote.post_id.create_date"/>
1203         <span t-if="vote.vote == '1'" class="fa fa-thumbs-up text-success" style="margin-left:30px"/>
1204         <span t-if="vote.vote == '-1'" class="fa fa-thumbs-down text-warning" style="margin-left:30px"/>
1205         <t t-if="vote.post_id.parent_id">
1206             <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"/>
1207         </t>
1208         <t t-if="not vote.post_id.parent_id">
1209             <a t-attf-href="/forum/#{ slug(forum) }/question/#{ vote.post_id.id }" style=" color:black;margin-left:10px" t-esc="vote.post_id.name"/>
1210         </t>
1211     </div>
1212     <div class="mb16" t-if="not vote_post">
1213         <b>No vote given by you yet!</b>
1214     </div>
1215 </template>
1216
1217 <!-- User Navbar -->
1218 <template id="content_new_forum" inherit_id="website.user_navbar" groups="base.group_user">
1219     <xpath expr="//ul[@id='oe_systray']/li/ul[@class='dropdown-menu oe_content_menu']" position="inside">
1220         <li><a href="#" data-action="new_forum">New Forum</a></li>
1221     </xpath>
1222 </template>
1223
1224     </data>
1225 </openerp>