19.0 vanilla

This commit is contained in:
Ernad Husremovic 2026-03-09 09:30:27 +01:00
parent d1963a3c3a
commit 2d3ee4855a
7430 changed files with 2687981 additions and 2965473 deletions

View file

@ -1,25 +1,55 @@
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<!-- External page : thanks message -->
<template id="rating_external_page_view" name="Rating Page Done">
<template id="rating_external_page_view" name="Thanks for your Feedback">
<t t-call="web.frontend_layout">
<div class="container pt-5">
<div class="oe_structure" id="oe_structure_rating_header_thanks_you"/>
<div class="text-center mt-5 pt-5">
<h3 class="d-inline">Thank you, we appreciate your feedback!</h3>
<div class="o_rating_page_thank_you d-flex flex-column justify-content-center">
<div class="container py-5">
<div class="oe_structure" id="oe_structure_rating_header_thanks_you"/>
<h3 class="text-center mt-4 pb-2">Thank you for your feedback!</h3>
<a t-att-href="web_base_url" class="d-block text-decoration-none text-center mb-4">
<i class="fa fa-arrow-left me-1"/> Back to the Homepage
</a>
<div class="oe_structure" id="oe_structure_rating_footer_thanks_you"/>
</div>
<div class="text-center">
<a role="button" t-att-href="web_base_url" class="btn btn-primary my-5">Go back to the Homepage</a>
</div>
<div class="oe_structure" id="oe_structure_rating_footer_thanks_you"/>
</div>
</t>
</template>
<!-- External page: Invalid partner rating -->
<template id="rating_external_page_invalid_partner" name="Not allows to rating">
<t t-call="web.frontend_layout">
<section class="mt128">
<div class="container">
<div class="row" >
<div class="col-lg-4">
<img class="img img-fluid mx-auto" src="/rating/static/src/img/503.svg" alt=""/>
</div>
<div class="col-lg-8 text-lg-start">
<h1>You cannot rate this <t t-out="model_name"/></h1>
<p>
Only the customer of "<t t-out="name"/>" or someone from the same company can give it a rating.
</p>
</div>
<hr class="my-5 opacity-100"/>
<div class="mb128 col-lg-12">
<ul class="list-inline text-center">
<li>
<a t-att-href="web_base_url" class="btn btn-primary">Home</a>
</li>
</ul>
</div>
</div>
</div>
</section>
</t>
</template>
<!-- External page: rate and submit feedback -->
<template id="rating_external_page_submit" name="Rate our Services">
<t t-call="web.frontend_layout">
<div class="container mb-5 mt-4 o_rating_page_submit">
<div class="oe_structure" id="oe_structure_rate_submit_header"/>
<div class="row text-center justify-content-center">
<h1 class="col-12 mt-5">Thank you for rating our services!</h1>
<form class="col-md-6" t-attf-action="/rate/#{token}/submit_feedback" method="post">
@ -42,7 +72,7 @@
</t>
</div>
<p class="mt-5">
Feel free to write a feedback on your experience:
Feel free to share feedback on your experience:
</p>
<input type="hidden" name="csrf_token"
t-att-value="request.csrf_token()"/>
@ -51,6 +81,7 @@
<button type="submit" class="btn btn-primary mt-4"
style="margin-top:8px;">Send Feedback</button>
</form>
<div class="oe_structure" id="oe_structure_rate_submit_footer"/>
</div>
</div>
</t>