Subversion Repositories SmartDukaan

Rev

Rev 24541 | Rev 26161 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<style>
        .table-striped > tbody > tr:nth-child(odd) > td{
                background: white;
                background-color: white;
        }
        .table-striped > tbody > tr:nth-child(even) > td{
                background: white;
                background-color:white;
        }
        .table-striped > tbody > tr:hover > td,
        .table-striped > tbody > tr:hover {
                background-color: #e98c8f;
                color:white;
        }
        .btn:hover{
                color: grey;
                text-decoration: none;
        }
        .btn-primary:hover{
                color: grey;
                text-decoration: none;
        }
        .sale-details{
                cursor:pointer;
        }
        .row-fluid {
        overflow: auto;
        white-space: nowrap;
        }
</style>
<section class="wrapper">            
        <div class="row">
                <div class="col-lg-12">
                        <h3 class="page-header"><i class="icon_document_alt"></i>DOWNLOAD REPORTS</h3>
                        <ol class="breadcrumb">
                                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
                                <li><i class="icon_document_alt"></i>Reports</li>                                                       
                        </ol>
                </div>
        </div>
        <div class="container">
                  <h2>Reports</h2>
                  <p>Download Reports</p>            
                  <table class="table table-striped">
                    <tbody>
                        <div class="list-group">
                    #foreach($reporticoProjectEntry in $reporticoProjectMap.entrySet())
                            #foreach($reporticoUrlInfo in $reporticoProjectEntry.getValue())
                                                  <a href="${rc.contextPath}/reports/${reporticoProjectEntry.getKey()}${reporticoUrlInfo.getUrl()}" class="list-group-item">
                                                    <h4 class="list-group-item-heading">$reporticoUrlInfo.getTitle()</h4>
                                                    <p class="list-group-item-text">$reporticoUrlInfo.getDescription()</p>
                                                  </a>
                                #end
                        #end
                                </div>
                        </tbody>
                 </table>
        </div>
        <div id="report-modal" class="modal fade" role="dialog" data-backdrop="static" data-keyboard="false">
                <div class="modal-dialog">
                
                    <!-- Modal content-->
                    <div class="modal-content">
                      <div class="modal-header">
                        <button type="button" class="close" data-dismiss="modal">&times;</button>
                        <h4 class="modal-title"></h4>
                      </div>
                      <div class="modal-body">
                          </div>
                          <div class="modal-footer">
                        <button type="button" data-dismiss="modal" class="btn btn-default download-report">Download</button>
                      </div>
                </div>
                </div>
        </div>
</section>