Show house campaigns on the traffic page.

This commit is contained in:
Brian Simpson
2013-11-02 17:56:13 -04:00
parent 2f5d8cd4fa
commit 370314ed1d

View File

@@ -515,7 +515,8 @@ def is_early_campaign(campaign):
def is_launched_campaign(campaign):
now = datetime.datetime.now(g.tz).date()
return bool(campaign.trans_id) and campaign.start_date.date() <= now
return (promote.charged_or_not_needed(campaign) and
campaign.start_date.date() <= now)
class PromotedLinkTraffic(Templated):