You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
2.9 KiB
61 lines
2.9 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Loading snippet -->
|
|
<template id="s_testimonial" name="Testimonials">
|
|
<section class="testimonial_xtream">
|
|
<div class="container o_not_editable">
|
|
<div class="css_non_editable_mode_hidden">
|
|
<div class="alert alert-info">
|
|
<h4>Snippet will be displayed here... Please Save to view the snippet.</h4>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
<!-- Testimonial snippet -->
|
|
<template id="testimonial" name="Testimonial">
|
|
<t t-if="not testimonials">
|
|
<section class="testimonial_xtream">
|
|
<div class="alert alert-info">
|
|
<h4>Configure Testimonials : Website > Configuration > Xtream Testimonials </h4>
|
|
</div>
|
|
</section>
|
|
</t>
|
|
<t t-else="">
|
|
<section class="body_section">
|
|
<section class="testiomonial">
|
|
<div class="wrapper">
|
|
<h2>Testimonial</h2>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="owl-carousel" id="slider2">
|
|
<t t-foreach="testimonials" t-as="comment">
|
|
<div>
|
|
<div class="testimonial_content">
|
|
<span class="fa fa-quote-right"/>
|
|
<p class="pp">
|
|
<t t-esc="comment.testimony"/>
|
|
</p>
|
|
<div class="img_test">
|
|
<div class="wrapper">
|
|
<img t-attf-src="/web/image?model=res.partner&field=image_1920&id=#{comment.partner_id.id}"/>
|
|
</div>
|
|
<div class="name">
|
|
<p><t t-esc="comment.partner_id.name"/></p>
|
|
<span><t t-esc="comment.partner_id.function"/></span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</t>
|
|
</div>
|
|
<div class="slider-counter">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</section>
|
|
</t>
|
|
</template>
|
|
</odoo>
|
|
|