Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
33973 tejus.loha 1
<style>
2
    .table-striped > tbody > tr:nth-child(odd) > td{
3
        background: white;
4
        background-color: white;
5
    }
6
    .table-striped > tbody > tr:nth-child(even) > td{
7
        background: white;
8
        background-color:white;
9
    }
10
    .table-striped > tbody > tr:hover > td,
11
    .table-striped > tbody > tr:hover {
12
        background-color: #e98c8f;
13
        color:white;
14
    }
15
    .btn:hover{
16
        color: grey;
17
        text-decoration: none;
18
    }
19
    #reportico-content .modal-body{
20
        max-height: 500px;
21
        overflow-y: scroll;
22
    }
23
</style>
24
<section class="wrapper">
25
    <div class="row">
26
        <div class="col-lg-12">
27
            <h3 class="page-header"><i class="icon_document_alt"></i>DOWNLOAD REPORTS</h3>
28
            <ol class="breadcrumb">
29
                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">#springMessage("reports.home")</a></li>
30
                <li><i class="icon_document_alt"></i>#springMessage("reports.reports")</li>
31
            </ol>
32
        </div>
33
    </div>
34
    <div class="container-fluid">
35
        <h2>#springMessage("reports.reports")</h2>
36
        <p>#springMessage("reports.downloadreports")</p>
37
        <div class="row info-box white-bg">
38
            <div class="col-md-3">
39
                <ul class="nav nav-pills nav-stacked">
40
                    #foreach($directoryEntry in $directories.entrySet())
41
                        <li><a data-toggle="pill" href="#$!velocityCount">$directoryEntry.key</a></li>
42
                    #end
43
                </ul>
44
            </div>
45
            <div class="col-md-9">
46
                <div class="tab-content">
47
                    #foreach($directoryEntry in $directories.entrySet())
48
                        <div id="$!velocityCount" class="tab-pane fade">
49
                            <h3>Heading $directoryEntry.key</h3>
50
                            <hr>
51
                            <ol>
52
                                #foreach($file in $directoryEntry.value)
53
                                    <li class="getFileContent" data-url="/reportico/file-content?path=$directoryEntry.key/$file"><a href="javascript:void(0)">$file</a></li>
54
                                #end
55
                            </ol>
56
                        </div>
57
                    #end
58
                </div>
59
            </div>
60
        </div>
61
    </div>
62
    <div id="reportico-modal" class="modal" role="dialog" data-backdrop="static" data-keyboard="false">
63
        <div class="modal-dialog modal-lg modal-dialog-scrollable">
64
            <div class="modal-content" id="reportico-content">
65
 
66
            </div>
67
        </div>
68
    </div>
69
</section>