Skip to content
Merged
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ addon | version | maintainers | summary
[website_cookiefirst](website_cookiefirst/) | 18.0.2.0.0 | | Cookiefirst integration
[website_crm_quick_answer](website_crm_quick_answer/) | 18.0.1.0.0 | | Add an automatic answer for contacts asking for info
[website_form_require_legal](website_form_require_legal/) | 18.0.1.0.1 | | Add possibility to require confirm legal terms.
[website_forum_subscription](website_forum_subscription/) | 18.0.1.0.0 | | Adds a button to allow subscription from the website
[website_forum_subscription](website_forum_subscription/) | 18.0.1.0.1 | | Adds a button to allow subscription from the website
[website_google_tag_manager](website_google_tag_manager/) | 18.0.1.0.0 | | Add support for Google Tag Manager
[website_legal_page](website_legal_page/) | 18.0.1.0.0 | | Website Legal Page
[website_menu_by_user_status](website_menu_by_user_status/) | 18.0.1.0.0 | | Allow to manage the display of website.menus
Expand Down
2 changes: 1 addition & 1 deletion website_forum_subscription/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Website Forum Subscription
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:604a90fe9b167842a2e7743440e255581c141c520935ffd14ada3960b83433be
!! source digest: sha256:7e6554c158546f3ceeee959716b5f9c19d7f9f78262829a0365f87397ed69b95
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
Expand Down
2 changes: 1 addition & 1 deletion website_forum_subscription/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{
"name": "Website Forum Subscription",
"summary": "Adds a button to allow subscription from the website",
"version": "18.0.1.0.0",
"version": "18.0.1.0.1",
"category": "Website",
"website": "https://github.com/OCA/website",
"author": ("Tecnativa, " "Odoo Community Association (OCA)"),
Expand Down
2 changes: 1 addition & 1 deletion website_forum_subscription/static/description/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ <h1>Website Forum Subscription</h1>
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:604a90fe9b167842a2e7743440e255581c141c520935ffd14ada3960b83433be
!! source digest: sha256:7e6554c158546f3ceeee959716b5f9c19d7f9f78262829a0365f87397ed69b95
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/license-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/website/tree/18.0/website_forum_subscription"><img alt="OCA/website" src="https://img.shields.io/badge/github-OCA%2Fwebsite-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/website-18-0/website-18-0-website_forum_subscription"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/website&amp;target_branch=18.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
<p>Allows users to subscribe/unsubscribe from forum notifications.</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@
t-value="request.env.user.has_group('base.group_public')"
/>
<div t-if="user_public">
<a class="btn btn-link" href="/web/login">
<i class="fa fa-bell" /> Subscribe to forum notifications
</a>
<object>
<a class="btn btn-link" href="/web/login">
<i class="fa fa-bell" /> Subscribe to forum notifications
</a>
</object>
</div>
<div
t-if="icons_design and not user_public"
Expand Down
Loading