Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Approvazioni
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto

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

  • CRM
  • e-Commerce
  • Contabilità
  • Magazzino
  • PoS
  • Progetti
  • MRP
All apps
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
Website website #website HTML/CSS #help
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
Website website #website HTML/CSS #help
Sul forum
  1. Website Builder
  2. Forum

How to make a table?

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
3 Risposte
27634 Visualizzazioni
Avatar
Cedric Eveleigh

With the Odoo website builder, how can I create a table like the one below? I don't care about the exact formatting. I'm just looking for the basic ability to create a table.



0
Avatar
Abbandona
Avatar
Gracious Joseph
Risposta migliore

Creating a table like the one shown in your image using the Odoo Website Builder is straightforward. Here's how you can do it:

1. Using the Website Builder's Table Tool

  1. Go to Website Editor:
    • Navigate to Website > Website Builder in Odoo.
    • Open the page where you want to add the table or create a new one.
  2. Insert a Table:
    • While in edit mode, locate the HTML Editor block.
    • Click Add Block and choose an HTML block.
  3. Edit the HTML Block:
    • Enter the following basic HTML for a table:
    <table border="1" style="border-collapse: collapse; width: 100%; text-align: center;">
        <thead>
            <tr>
                <th>Measurement</th>
                <th>Small</th>
                <th>Medium</th>
                <th>Large</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td>Approx. Inseam and Height</td>
                <td>26.0"-29.0" <br> 5'0"-5'6"</td>
                <td>29.0"-32.0" <br> 5'6"-5'10"</td>
                <td>32.0"-35.0" <br> 5'10"-6'3"</td>
            </tr>
            <tr>
                <td>(A) Reach</td>
                <td>15.74" (400mm)</td>
                <td>16.14" (410mm)</td>
                <td>16.33" (415mm)</td>
            </tr>
            <tr>
                <td>(B) Stack</td>
                <td>23.62" (600mm)</td>
                <td>23.62" (600mm)</td>
                <td>25.19" (640mm)</td>
            </tr>
            <tr>
                <td>(C) Min Seat Height (from ground)</td>
                <td>30.5"</td>
                <td>32.5"</td>
                <td>34.5"</td>
            </tr>
            <tr>
                <td>(D) Max Seat Height (from ground)</td>
                <td>36.5"</td>
                <td>40.5"</td>
                <td>42.5"</td>
            </tr>
            <tr>
                <td>(E) Stepover Height (from ground)</td>
                <td>22.5"</td>
                <td>23.5"</td>
                <td>24.5"</td>
            </tr>
        </tbody>
    </table>
    
  4. Save and Preview:
    • Save your changes.
    • Preview the table on your website to ensure it looks as intended.

2. Using Table Blocks (If Available)

If your version of Odoo has a drag-and-drop Table Block:

  1. Add a Table Block from the block library.
  2. Use the visual editor to fill in your data row by row.
  3. Adjust formatting using the toolbar for alignment and styling.

3. Style the Table

For better aesthetics, you can add inline CSS or custom CSS in your website's theme. For example:

<style>
   table {
       border-collapse: collapse;
       width: 100%;
       text-align: center;
       font-family: Arial, sans-serif;
   }
   th, td {
       border: 1px solid #ddd;
       padding: 8px;
   }
   th {
       background-color: #f4f4f4;
   }
   tr:nth-child(even) {
       background-color: #f9f9f9;
   }
   tr:hover {
       background-color: #f1f1f1;
   }
</style>

4. Export and Import

If you’re familiar with Excel or Google Sheets:

  1. Create the table in your spreadsheet tool.
  2. Copy the table and paste it directly into the HTML block.
    • Most spreadsheet tools will generate compatible HTML for tables.

This approach will allow you to replicate the table with ease. Let me know if you need help refining the design or adding advanced features!

0
Avatar
Abbandona
Avatar
Edgardo L.
Risposta migliore

Is there any solution to this as of today? :) doesn't work with / for blog/page.

0
Avatar
Abbandona
Avatar
danny Zelko
Risposta migliore

I believe you would only need to enter the forward-slash character "/" and then start typing the word "table".  The option to insert the table appears in a list.  

When you click on that you will see a small tool pop-up that allows you to select how many rows and columns you want the table to have.  Drag the cursor to select and then click. 

I would include an image but cant seem to work out how to do that here.

0
Avatar
Abbandona
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة 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 è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

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