Ir al contenido
Odoo Menú
  • Identificarse
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • TPV para tiendas
    • TPV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en directo
    • eLearning
    Cadena de suministro
    • Inventario
    • Fabricación
    • PLM
    • Compra
    • Mantenimiento
    • Calidad
    Recursos Humanos
    • Empleados
    • Reclutamiento
    • Ausencias
    • Evaluación
    • Referencias
    • Flota
    Marketing
    • Marketing social
    • Marketing por correo electrónico
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyecto
    • Partes de horas
    • Servicio de campo
    • Servicio de asistencia
    • Planificación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Información
    • WhatsApp
    Aplicaciones de terceros Studio de Odoo Plataforma de Odoo Cloud
  • Industrias
    Comercio al por menor
    • Librería
    • Tienda de ropa
    • Tienda de muebles
    • Tienda de ultramarinos
    • Ferretería
    • Juguetería
    Alimentación y hostelería
    • Bar y taberna
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidor de bebidas
    • Hotel
    Inmueble
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión inmobiliaria
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Empresa contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Fabricación
    • Textil
    • Metal
    • Muebles
    • Alimentos
    • Brewery
    • Regalos de empresas
    Salud y bienestar
    • Club deportivo
    • Óptica
    • Gimnasio
    • Terapeutas
    • Farmacia
    • Peluquería
    Oficios
    • Handyman
    • Hardware y asistencia informática
    • Sistemas de energía solar
    • Zapatero
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin ánimo de lucro
    • Agencia de protección del medio ambiente
    • Alquiler de paneles publicitarios
    • Estudio fotográfico
    • Alquiler de bicicletas
    • Distribuidor de software
    Browse all Industries
  • Comunidad
    Aprender
    • Tutoriales
    • Documentación
    • Certificaciones
    • Formación
    • Blog
    • Podcast
    Potenciar la educación
    • Programa de formación
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtener el software
    • Descargar
    • Comparar ediciones
    • Versiones
    Colaborar
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Convertirse en partner
    • Services for Partners
    • Registrar tu empresa contable
    Obtener servicios
    • Encontrar un partner
    • Encontrar un asesor fiscal
    • Contacta con un experto
    • Servicios de implementación
    • Referencias de clientes
    • Ayuda
    • Actualizaciones
    GitHub YouTube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicitar una demostración
  • Precios
  • Ayuda

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

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyecto
  • MRP
All apps
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
Website website #website HTML/CSS #help
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
Website website #website HTML/CSS #help
Acerca de este foro
  1. Website Builder
  2. Foro

How to make a table?

Suscribirse

Reciba una notificación cuando haya actividad en esta publicación

Se marcó esta pregunta
3 Respuestas
27639 Vistas
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
Descartar
Avatar
Gracious Joseph
Mejor respuesta

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
Descartar
Avatar
Edgardo L.
Mejor respuesta

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

0
Avatar
Descartar
Avatar
danny Zelko
Mejor respuesta

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
Descartar
¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Inscribirse
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento Odoo.sh
  • Ayuda
  • Actualizar
  • Desarrollos personalizados
  • Educación
  • Encontrar un asesor fiscal
  • Encontrar un partner
  • Convertirse en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contacta con nosotros
  • Puestos de trabajo
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Información legal • Privacidad
  • Seguridad
الْعَرَبيّة 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 es un conjunto de aplicaciones de código abierto que cubren todas las necesidades de tu empresa: CRM, comercio electrónico, contabilidad, inventario, punto de venta, gestión de proyectos, etc.

La propuesta única de valor de Odoo es ser muy fácil de usar y totalmente integrado.

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