Last active
December 20, 2015 20:09
-
-
Save adamrneary/6188650 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = class ChannelsIndexListView extends NestedParentView | |
pageGuideContext: | |
title: 'Channel list' | |
items: [ | |
target: '.breadcrumbs .last' | |
direction: 'right' | |
description: 'Channels are simply sources of new customers. By building | |
customer acqusition strategy around a portfolio of channels, it much | |
easier to determine what is working best and prioritize accordingly.' | |
, | |
target: '.btn-add-dimension' | |
direction: 'right' | |
description: ' | |
The list is yours to customize to your business as you like. Click here | |
to add a channel, and you can always delete channels in the table below. | |
If you drag each of your existing customers into a channel as best you | |
can in order to track plan vs actual.' | |
] | |
driverLabel: 'Cost driver' | |
driverList: | |
exclude: 'Exclude this channel from the plan' | |
manual: 'Forecast this channel manually' | |
revenue: 'Forecast top down: Percent of revenue' | |
new_customers: 'Forecast bottom up: New customers' | |
driverDefault: 'manual' | |
valueLabel: 'Spend' | |
parent_id_field: 'channel_id' | |
initialize: (options) -> | |
@parents = app.channels | |
@children = app.customers | |
super |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment