Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Jídlo a pohostinství
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Penzion
    • Distributor nápojů
    • Hotel
    Nemovitost
    • Realitní kancelář
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Poradenství
    • Účetní firma
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textile
    • Kov
    • Nábytek
    • Jídlo
    • Brewery
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • IT hardware a podpora
    • Systémy solární energie
    • Výrobce obuvi
    • Úklidové služby
    • Služby HVAC
    Ostatní
    • Nezisková organizace
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Browse all Industries
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Services for Partners
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

Odoo v11 QWeb: data-oe-* branding not applied correctly when using <t t-esc> inside header

Odebírat

Get notified when there's activity on this post

This question has been flagged
imageqwebheaderbackgroundbrandingv11.0
1241 Zobrazení
Avatar
MFDEV

Hi,

I'm experiencing a problem in Odoo v11 regarding the QWeb templating engine and the branding system (data-oe-* attributes).

When I insert a <header> inside a view using QWeb inheritance, everything works fine unless I include a <t t-esc="..."/> tag somewhere inside the header. In that case, the data-oe-id, data-oe-xpath, etc. branding attributes are not applied correctly to the <header> element. As a result, it becomes impossible to edit the header's background-image (and other styles) in the website editor.
<xpath expr="//div[@id='wrap']//div[hasclass('oe_structure')]" position="before">

 <xpath expr="//div[@id='wrap']//div[hasclass('oe_structure')]" position="before">
    <!-- Header -->
    <header class="header s_header text-white"
            style="background-color: #b9a0c9;">
        <div class="overlay opacity-75"
             style="background-image: linear-gradient(to top, #0d8464 0%, #4c8bb1 100%);"/>
        <div class="container text-center">
            <div class="row">
                <div class="col-md-8 mx-auto">
                    <h1 class="display-41">Our Events</h1>
                    <p class="lead-2 opacity-90">
                        <t t-esc="current_date"/>
                    </p>
                    <p class="lead-2 opacity-90">
                        <!--<t t-esc="current_type.name"/>-->
                    </p>
                    <p class="lead-2 opacity-90">
                        <!--<t t-esc="current_country.name"/>-->
                    </p>
                </div>
            </div>
        </div>
    </header>
</xpath>

If even one <t t-esc="..."/> tag is present (not commented out), the branding fails. If I remove or comment out all <t t-esc> tags, the header gets properly branded and can be edited visually via the website editor. Same problem occurs when I use t-field.

This makes me think the branding system (inherit_branding function in the backend) is incorrectly identifying the parent element when QWeb control tags like <t t-esc> are used.

Can anyone provide insight into why this happens? Is this a known issue or limitation in v11? Any workarounds or patches would be greatly appreciated.

Thanks in advance!

0
Avatar
Zrušit
Enjoying the discussion? Don't just read, join in!

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

Přihlásit se
Related Posts Odpovědi Zobrazení Aktivita
How to load an image file from disk in qweb report? Vyřešeno
v8 image qweb background
Avatar
Avatar
2
čvn 24
12997
Load image from db to qweb report Vyřešeno
image qweb
Avatar
Avatar
2
srp 20
4975
Qweb Report background-image
qweb reports background
Avatar
Avatar
1
bře 24
4572
QWEB report removing the header container on page. Vyřešeno
qweb header page
Avatar
Avatar
1
čvc 23
12001
Can I put my company header image above the Odoo UI? Vyřešeno
header logo branding
Avatar
Avatar
1
bře 22
4885
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة 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 je balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

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