1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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."),
}],
});
});
|