Basic features for handling content deletion via frontend.
Project description
Basic features for deleting content via frontend.
Features
register your own custom delete confirmation view per-model
use cms_status_message to show confirmation message for deletion
generic template for asking delete confirmation
new fields and parameters on website.published.mixin to handle delete links and redirects
Table of contents
Usage
Custom per-model delete message
class MyModel(models.Model):
_inherit = "my.model"
@api.multi
def msg_content_delete_confirm(self):
self.ensure_one()
return _('Are you sure you want to delete "%s"?.') % self.name
Custom “after delete URL”
When you are viewing a content and you delete it you want to be redirected to some other place.
By default you get redirected to the root of the website.
To change this behavior just override the attribute in your model declaration:
class MyModel(models.Model):
_inherit = "my.model"
cms_after_delete_url = '/foo'
Note: if you want to customize it on demand for particular pages, or you are deleting an item from another page (like a management page) you can pass ?redirect= in the url, like:
<a class="btn btn-danger cms_delete_confirm" t-attf-href="#{object.cms_delete_confirm_url}?redirect=">Delete</a>
Custom global delete confirm message appeareance
<template id="delete_confirm" inherit_id="cms_delete_content.delete_confirm">
<xpath expr="//h4[@id='delete_confirm']" position="replace">
<h1 t-esc="main_object.msg_content_delete_confirm()">I want it bigger!</h1>
</xpath>
</template>
Known issues / Roadmap
Get rid of website dependency to be able to use it w/ portal module only.
Changelog
13.0.1.0.1 (2021-08-23) Features
Migration to v13 (#111)
11.0.1.0.2 (2018-04-27)
Fixes
Fix tests: use real fake models
Old approach for fake test models was giving bad behaviors even if the tests were not ran for this module.
Now we init a real fake model only on test run.
11.0.1.0.1 (2018-04-24)
Fixes
Update JS according to cms_status_message updates
11.0.1.0.0 (2018-01-18)
Initial release
Bug Tracker
Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us smashing it by providing a detailed and welcomed feedback.
Do not contact contributors directly about support or help with technical issues.
Credits
Contributors
Simone Orsi <simone.orsi@camptocamp.com>
Maintainers
This module is maintained by the OCA.
OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.
This module is part of the OCA/website-cms project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file odoo13_addon_cms_delete_content-13.0.1.0.1-py3-none-any.whl
.
File metadata
- Download URL: odoo13_addon_cms_delete_content-13.0.1.0.1-py3-none-any.whl
- Upload date:
- Size: 34.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9c30243c4d3c58a8cadba857bb4e0dc1ee453a2fd5838d1dbb6695b72456c95f |
|
MD5 | f96db48786df374f75c6b6411a976ab0 |
|
BLAKE2b-256 | 696584b0736bcdfecd791233b323169aeb43ba5a8686999cf58878af48c91d19 |