Skip to content

Instantly share code, notes, and snippets.

@adnissen
Created November 23, 2014 15:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adnissen/8b270ed82af33eb5404a to your computer and use it in GitHub Desktop.
Save adnissen/8b270ed82af33eb5404a to your computer and use it in GitHub Desktop.
<table>
<tr>
<th>Campaign</th>
<th>Status</th>
<th>Impressions</th>
</tr>
<% _.each(campaigns, function (campaign) { %>
<td><a href='<%= "/advertiser/" + campaign.advertiser + "/" + campaign.id %>'><%= campaign.name %></a></td>
<td>Live</td>
<td><% Campaign.calculateImpressions(campaign.id, function(e, data){ %>
<%= data.uniqueCountRandom %>
<% }); %></td>
<% }) %>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment