Browse Source

Dec 12: [FIX] Bug Fixed 'theme_blast'

pull/361/head
Cybrosys Technologies 5 months ago
parent
commit
434473ddc4
  1. 4
      theme_blast/__manifest__.py
  2. 2
      theme_blast/doc/RELEASE_NOTES.md
  3. 0
      theme_blast/static/description/banner.jpg
  4. BIN
      theme_blast/static/description/icon.png
  5. 4
      theme_blast/static/description/index.html
  6. 0
      theme_blast/static/description/theme_screenshot.jpg
  7. 2
      theme_blast/views/blast_configuration_views.xml
  8. 11
      theme_blast/views/snippets/best_deal_templates.xml
  9. 13
      theme_blast/views/snippets/best_products_carousal_templates.xml

4
theme_blast/__manifest__.py

@ -83,8 +83,8 @@
]
},
'images': [
'static/description/img/banner.jpg',
'static/description/img/theme-blast-thumbnail.jpg',
"static/description/banner.jpg",
"static/description/theme_screenshot.jpg",
],
'license': 'AGPL-3',
'installable': True,

2
theme_blast/doc/RELEASE_NOTES.md

@ -1,6 +1,6 @@
## Module <theme_blast>
#### 30.11.2024
#### 18.10.2024
#### Version 18.0.1.0.0
##### ADD
- Initial Commit for Theme Blast

0
theme_blast/static/description/img/banner.jpg → theme_blast/static/description/banner.jpg

Before

Width:  |  Height:  |  Size: 148 KiB

After

Width:  |  Height:  |  Size: 148 KiB

BIN
theme_blast/static/description/icon.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

4
theme_blast/static/description/index.html

@ -59,7 +59,7 @@
</div>
<div class="text-center col"
style="font-size:0.8rem !important; border:1px solid #714b67; color:#714b67 !important; font-weight:500 !important; padding:4px !important; margin:0 3px !important; border-radius:20px !important; min-width:120px !important">
<i class="fa fa-check" style="color:green"></i> Odoo.sh
<i class="fa fa-times" style="color:red"></i> Odoo.sh
</div>
<div class="text-center col"
style="font-size:0.8rem !important; color:#5B899E !important; border:1px solid #5B899E; font-weight:500 !important; padding:4px !important; margin:0 3px !important; border-radius:20px !important; min-width:120px !important">
@ -76,7 +76,7 @@
<!-- banner-section -->
<div class="my-5">
<div class="">
<img src="./img/banner.jpg" class="img-fluid" style="border-radius: 16px; width:1300px;">
<img src="./banner.jpg" class="img-fluid" style="border-radius: 10px; width:1250px;">
</div>
</div>

0
theme_blast/static/description/img/theme-blast-thumbnail.jpg → theme_blast/static/description/theme_screenshot.jpg

Before

Width:  |  Height:  |  Size: 318 KiB

After

Width:  |  Height:  |  Size: 318 KiB

2
theme_blast/views/blast_configuration_views.xml

@ -5,7 +5,7 @@
<field name="name">Blast Configuration</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">blast.configuration</field>
<field name="view_mode">list,form</field>
<field name="view_mode">tree,form</field>
</record>
<!-- Blast configuration tree view-->
<record id="blast_configuration_view_tree" model="ir.ui.view">

11
theme_blast/views/snippets/best_deal_templates.xml

@ -41,14 +41,9 @@
<div class="wrapper">
<div class="deal_img">
<a t-attf-href="/shop/product/#{ slug(product_id.product_tmpl_id) }">
<t t-if="product_id.image_1920">
<span t-if="product_id"
t-esc="product_id.image_1920"
t-options="{'widget': 'image', 'preview_image': 'image_1024' if product_image_big else 'image_256'}"/>
</t>
<t t-else="">
<img loading="lazy" alt="Binary file" src="/web/static/img/placeholder.png" name="image_1920" class="first-image"/>
</t>
<span t-if="product_id"
t-esc="product_id.image_1920"
t-options="{'widget': 'image', 'preview_image': 'image_1024' if product_image_big else 'image_256'}"/>
</a>
</div>
<div class="deal_info">

13
theme_blast/views/snippets/best_products_carousal_templates.xml

@ -52,15 +52,10 @@
<div class="wrapper">
<div class="product_img">
<a t-attf-href="/shop/product/#{slug(product_id.product_tmpl_id)}">
<t t-if="product_id.image_1920">
<span t-if="product_id"
t-esc="product_id.image_1920"
t-options="{'widget': 'image', 'preview_image': 'image_1024' if product_image_big else 'image_256'}"
class="first-image"/>
</t>
<t t-else="">
<img loading="lazy" alt="Binary file" src="/web/static/img/placeholder.png" name="image_1920" class="first-image"/>
</t>
<span t-if="product_id"
t-esc="product_id.image_1920"
t-options="{'widget': 'image', 'preview_image': 'image_1024' if product_image_big else 'image_256'}"
class="first-image"/>
</a>
</div>
<div class="rating_container">

Loading…
Cancel
Save