VRFS-1576 report layout

This commit is contained in:
Jonathan Kolyer 2014-04-23 07:43:35 +00:00
parent a7d83064df
commit 55b149827a
2 changed files with 20 additions and 6 deletions

View File

@ -17,15 +17,24 @@
function populateAffiliateReport(report) {
console.log(report);
/*var template = context.JK.fillTemplate($('#template-account-affiliate').html(), {
email: userDetail.email
});*/
var by_date = '';
var ii=0, dates_len = report['by_date'].length;
for (var ii=0; ii < dates_len; ii += 1) {
var dd = report['by_date'][ii];
by_date += '<div style="float:left; margin-left:50px">'+dd[0]+'</div>';
by_date += '<div style="float:left; margin-left:20px;">'+dd[1].toString()+'</div>';
by_date += '<br />';
}
var template = context.JK.fillTemplate($('#template-account-affiliate').html(), {
total_count: report['total_count'],
by_date: by_date
});
$('#account-affiliate-content-scroller').html(template);
}
/****************** MAIN PORTION OF SCREEN *****************/
// events for main screen
function events() {
//$('#account-identity-content-scroller').on('click', '#account-edit-email-cancel', function(evt) { evt.stopPropagation(); navToAccount(); return false; } );
}
function renderAffiliateReport() {

View File

@ -15,7 +15,6 @@
<!-- profile scrolling area -->
<div class="content-body">
<div id="account-affiliate-content-scroller" class="content-body-scroller">
AFFILIATE
</div>
</div>
<!-- end content scrolling area -->
@ -26,7 +25,13 @@
<div class="content-wrapper account-affiliate">
<br />
<div class="account-left">
<h2>affiliate:</h2>
<div style='float:right; margin-right:20px;'><h2>Total Count:&nbsp;&nbsp;{total_count}</h2></div>
<br />
<div style="overflow:scroll; margin-left: 50px; margin-top: 20px">
<div style="float:left;">Registration Date</div><div style="float:left; margin-left:20px">Number of Users</div>
<br />
{by_date}
</div>
</div>
<br clear="all" />
</div>