Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
89 changes: 89 additions & 0 deletions deltatech_website_blocks/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
========================
Deltatech Website Blocks
========================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:567e6311c119a5113f614618940c92cd5f8da8f3b4d811aa9c6656d5144a5321
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |badge1| image:: https://img.shields.io/badge/maturity-Alpha-red.png
:target: https://odoo-community.org/page/development-status
:alt: Alpha
.. |badge2| image:: https://img.shields.io/badge/github-dhongu%2Fdeltatech-lightgray.png?logo=github
:target: https://github.com/dhongu/deltatech/tree/18.0/deltatech_website_blocks
:alt: dhongu/deltatech

|badge1| |badge2|

Deltatech Website Blocks
========================

This module provides custom building blocks (snippets) for the Odoo
Website builder to enhance the design and functionality of your website.

Features
========

1. **Partners Loop**: A dynamic snippet to display partner logos or
information in a loop.
2. **Stats Counters**: Animated counters to showcase key metrics and
statistics.
3. **Cards Grid**: A flexible grid layout for displaying content in card
format.
4. **Special Products**: A dedicated block for highlighting specific
products on your website.
5. **Countdown**: A countdown timer block (Currently in development).

Usage
=====

1. Enter the Website Editor.
2. Search for the new snippets in the **Blocks** tab.
3. Drag and drop the desired block onto your page.
4. Configure the block settings as needed.

.. IMPORTANT::
This is an alpha version, the data model and design can change at any time without warning.
Only for development or testing purpose, do not use in production.
`More details on development status <https://odoo-community.org/page/development-status>`_

**Table of contents**

.. contents::
:local:

Bug Tracker
===========

Bugs are tracked on `Terrabit Issues <https://www.terrabit.ro/helpdesk>`_.
In case of trouble, please check there if your issue has already been reported.

Do not contact contributors directly about support or help with technical issues.

Credits
=======

Authors
-------

* Terrabit
* Voicu Stefan

Maintainers
-----------

.. |maintainer-VoicuStefan2001| image:: https://github.com/VoicuStefan2001.png?size=40px
:target: https://github.com/VoicuStefan2001
:alt: VoicuStefan2001

Current maintainer:

|maintainer-VoicuStefan2001|

This module is part of the `dhongu/deltatech <https://github.com/dhongu/deltatech/tree/18.0/deltatech_website_blocks>`_ project on GitHub.

You are welcome to contribute.
Empty file.
37 changes: 37 additions & 0 deletions deltatech_website_blocks/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"name": "Deltatech Website Blocks",
"summary": "Custom website building blocks",
"version": "18.0.1.0.0",
"category": "Website/Website",
"author": "Terrabit, Voicu Stefan",
"website": "https://www.terrabit.ro",
"license": "OPL-1",
"depends": [
"website",
],
"data": [
"views/snippets/s_partners_loop.xml",
"views/snippets/s_stats_counters.xml",
"views/snippets/s_cards_grid.xml",
"views/snippets/s_deltatech_special_products.xml",
"views/snippets/snippets.xml",
],
"assets": {
"web.assets_frontend": [
"deltatech_website_blocks/static/src/snippets/s_partners_loop/000.scss",
"deltatech_website_blocks/static/src/snippets/s_partners_loop/000.js",
"deltatech_website_blocks/static/src/snippets/s_stats_counters/000.scss",
"deltatech_website_blocks/static/src/snippets/s_stats_counters/000.js",
"deltatech_website_blocks/static/src/snippets/s_cards_grid/000.scss",
"deltatech_website_blocks/static/src/snippets/s_deltatech_special_products/000.scss",
"deltatech_website_blocks/static/src/snippets/s_deltatech_special_products/000.js",
],
"website.assets_wysiwyg": [
"deltatech_website_blocks/static/src/snippets/s_partners_loop/options.js",
"deltatech_website_blocks/static/src/snippets/s_stats_counters/options.js",
],
},
"installable": True,
"maintainers": ["VoicuStefan2001"],
"development_status": "Alpha",
}
8 changes: 8 additions & 0 deletions deltatech_website_blocks/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[build-system]
requires = [
"whool",
]
build-backend = "whool.buildapi"

[project]
name = "odoo-addon-deltatech-website-blocks"
21 changes: 21 additions & 0 deletions deltatech_website_blocks/readme/DESCRIPTION.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Deltatech Website Blocks
========================

This module provides custom building blocks (snippets) for the Odoo Website builder to enhance the design and functionality of your website.

Features
========

1. **Partners Loop**: A dynamic snippet to display partner logos or information in a loop.
2. **Stats Counters**: Animated counters to showcase key metrics and statistics.
3. **Cards Grid**: A flexible grid layout for displaying content in card format.
4. **Special Products**: A dedicated block for highlighting specific products on your website.
5. **Countdown**: A countdown timer block (Currently in development).

Usage
=====

1. Enter the Website Editor.
2. Search for the new snippets in the **Blocks** tab.
3. Drag and drop the desired block onto your page.
4. Configure the block settings as needed.
Loading
Loading