Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Managament
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Producție
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

Error Loading Custom Odoo Website Snippet: 'View website_video_block in website 1 not found' - Assistance Needed with XML Template Registration

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
17
1 Răspunde
2218 Vizualizări
Imagine profil
Yousef Yousef

Question:

I'm developing a custom Odoo 17 website module to add a video block snippet, allowing users to play videos hosted on the server. I'm encountering the following error upon installation or usage of the snippet in Odoo:

plaintextCopy codeValueError: View 'website_video_block' in website 1 not found

This results in an RPC error that prevents the snippet from being displayed. Below is the specific traceback:

plaintextCopy codeTraceback (most recent call last):
  File "<944>", line 1419, in template_944
  ...
ValueError: View 'website_video_block' in website 1 not found

Context:

  1. Module Purpose: The module adds a custom snippet to the website editor with a video player to embed server-hosted videos.
  2. XML Code (Snippet Definition):
    • The snippet definition file includes a <template id="website_video_block" name="Video Block"> to define the block.
    • This template is then referenced in another template using <t t-call="website_video_block"/> within the website.snippets template.

Main Code Snippet:

xmlCopy code<odoo>
    <template id="website_video_block" name="Video Block">
        <div class="o_video_block">
            <video controls="controls">
                <source src="/path_to_videos/default_video.mp4" type="video/mp4"/>
                Your browser does not support the video tag.
            </video>
        </div>
    </template>

    <template id="add_video_block_snippet" inherit_id="website.snippets" name="Add Video Block to Snippets">
        <xpath expr="//div[@id='snippet_structure']/div" position="inside">
            <t t-call="website_video_block"/>
        </xpath>
    </template>
</odoo>

Error Cause Hypothesis: It appears that Odoo fails to locate or load the website_video_block view, resulting in an RPC error. I've checked for ID naming conflicts, updated the module, and cleared the cache, but the issue persists.

Could there be an issue with the template registration or the inheritance in the XML structure? Any guidance on resolving this would be greatly appreciated.

0
Imagine profil
Abandonează
Imagine profil
Cybrosys Techno Solutions Pvt.Ltd
Cel mai bun răspuns

Hi,

Call the template with your moule name.Modify the code as follows:

<odoo>

    <template id="website_video_block" name="Video Block">

        <div class="o_video_block">

            <video controls="controls">

                <source src="/path_to_videos/default_video.mp4" type="video/mp4"/>

                Your browser does not support the video tag.

            </video>

        </div>

    </template>


    <template id="add_video_block_snippet" inherit_id="website.snippets" name="Add Video Block to Snippets">

        <xpath expr="//div[@id='snippet_structure']/div" position="inside">

            <t t-call="your_module_name.website_video_block"/> <!-- Replace with your actual module name -->

        </xpath>

    </template>

</odoo>


Hope it helps

0
Imagine profil
Abandonează
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
Odoo 17 one2many lines issue
17
Imagine profil
Imagine profil
Imagine profil
Imagine profil
3
iun. 25
3153
Change resume view Rezolvat
17
Imagine profil
Imagine profil
Imagine profil
Imagine profil
4
iul. 25
1715
Internal transfer between branches
inventory 17
Imagine profil
Imagine profil
2
oct. 25
2076
restrict user acces to the transfert button in pos odoo17 CE
pos 17
Imagine profil
0
sept. 25
628
Repair Management Rezolvat
repair 17
Imagine profil
Imagine profil
2
mai 25
1674
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now