diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/utm/static/src/js | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/utm/static/src/js')
| -rw-r--r-- | addons/utm/static/src/js/utm_campaign_kanban_examples.js | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/addons/utm/static/src/js/utm_campaign_kanban_examples.js b/addons/utm/static/src/js/utm_campaign_kanban_examples.js new file mode 100644 index 00000000..a18e740a --- /dev/null +++ b/addons/utm/static/src/js/utm_campaign_kanban_examples.js @@ -0,0 +1,34 @@ +odoo.define('utm.campaing_kanban_examples', function (require) { +'use strict'; + +var core = require('web.core'); +var kanbanExamplesRegistry = require('web.kanban_examples_registry'); + +var _lt = core._lt; + +kanbanExamplesRegistry.add('utm_campaign', { + ghostColumns: [_lt('Ideas'), _lt('Design'), _lt('Review'), _lt('Send'), _lt('Done')], + applyExamplesText: _lt("Use This For My Campaigns"), + examples: [{ + name: _lt('Creative Flow'), + columns: [_lt('Ideas'), _lt('Design'), _lt('Review'), _lt('Send'), _lt('Done')], + description: _lt("Collect ideas, design creative content and publish it once reviewed."), + }, { + name: _lt('Event-driven Flow'), + columns: [_lt('Later'), _lt('This Month'), _lt('This Week'), _lt('Running'), _lt('Sent')], + description: _lt("Track incoming events (e.g. : Christmas, Black Friday, ...) and publish timely content."), + }, { + name: _lt('Soft-Launch Flow'), + columns: [_lt('Pre-Launch'), _lt('Soft-Launch'), _lt('Deploy'), _lt('Report'), _lt('Done')], + description: _lt("Prepare your Campaign, test it with part of your audience and deploy it fully afterwards."), + }, { + name: _lt('Audience-driven Flow'), + columns: [_lt('Gather Data'), _lt('List-Building'), _lt('Copywriting'), _lt('Sent')], + description: _lt("Gather data, build a recipient list and write content based on your Marketing target."), + }, { + name: _lt('Approval-based Flow'), + columns: [_lt('To be Approved'), _lt('Approved'), _lt('Deployed')], + description: _lt("Prepare Campaigns and get them approved before making them go live."), + }], +}); +}); |
