Subversion Repositories SmartDukaan

Rev

Rev 32438 | Rev 32445 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
32444 amit.gupta 1
##$currentMonthPartnerMap.toString()
2
$lastDayMilestoneCountMap.toString()
32438 amit.gupta 3
<html lang="en">
4
<head>
5
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
6
    <meta http-equiv="refresh" content="180">
7
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
8
          integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
9
    <style>
10
        html, body {
11
            margin-top: 10px;
12
            padding: 0;
13
        }
14
 
15
 
16
        td, th {
17
            font-size: 20px;
18
        }
19
 
20
 
21
        .table td, .table th {
22
            padding: 0.25rem;
23
        }
24
 
25
        tr:first-child.green td {
26
            font-weight: bold;
27
            background-color: #00d6b2;
28
        }
29
 
30
        td {
31
            font-size: 24px;
32
        }
33
    </style>
34
    <link href="../resources/css/brand-logo.css" rel="stylesheet"/>
35
</head>
36
<body>
37
<div class="container-fluid">
32444 amit.gupta 38
    <table class="table table-bordered table-striped">
39
        <thead>
40
        <tr>
41
            <th colspan="$milestones.length*2+2">Partners Split By Actual Billing</th>
42
        </tr>
43
        <tr>
44
            <th rowspan="2">RBM</th>
45
            <th rowspan="2">State</th>
46
            #foreach($milestone in $milestones)
47
                <th colspan="2">$milestone.getValue()</th>
48
            #end
49
        </tr>
50
        <tr>
51
            #foreach($milestone in $milestones)
52
                <th>MTD</th>
53
                <th>FTD</th>
54
            #end
55
        </tr>
56
        </thead>
57
        <tbody>
58
        <tr>
59
            <td></td>
60
        </tr>
61
        </tbody>
62
    </table>
32438 amit.gupta 63
</div>
64
</body>
65
</html>