12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?php
- $this->layout = false;
- ?>
- <!DOCTYPE html>
- <html>
- <?= $this->element('Eprosume/header') ?>
- <body class="hold-transition skin-green sidebar-mini">
- <div class="wrapper">
-
- <?= $this->element('Eprosume/mainHeader') ?>
-
- <!-- Left side column. contains the logo and sidebar -->
- <?= $this->element('Eprosume/leftSideColumn') ?>
-
- <!-- Content Wrapper. Contains page content -->
- <div class="content-wrapper">
- <!-- Content Header (Page header) -->
- <section class="content-header">
- <h1>
- Price History
- <small></small>
- </h1>
- <ol class="breadcrumb">
- <li><a href="/"><i class="fa fa-dashboard"></i> <?= $app_name ?></a></li>
- <li class="active"><a href="/history">History</a></li>
- </ol>
- </section>
-
- <!-- Main content -->
- <section class="content">
- <div class="row">
- <div class="col-xs-12">
- <div class="box">
- <!-- /.box-header -->
- <div class="box-body">
- <?= $this->element('Eprosume/dataTableToolbar', [
- "prosumers" => $prosumers,
- "column" => "1,2",
- "columnTimestamp"=>0
- ]) ?>
- <table id="valueTable" class="table table-bordered table-striped">
- <thead>
- <tr>
- <th>Timestamp</th>
- <th>From</th>
- <th>To</th>
- <th>Buy Price</th>
- <th>Sell Price</th>
- </tr>
- </thead>
- <tbody>
- </tbody>
- </table>
- </div>
- <!-- /.box-body -->
- </div>
- <!-- /.box -->
- </div>
- <!-- /.col -->
- </div>
- <!-- /.row -->
- </section>
- <!-- /.content -->
- </div>
- <!-- /.content-wrapper -->
- <?= $this->element('Eprosume/footer') ?>
- </div>
- <!-- ./wrapper -->
- <?= $this->element('Eprosume/scripts') ?>
- <?= $this->element('Eprosume/Views/datatable', array("dataTableConfiguration" => "priceHistoryDataTableConfiguration")) ?>
- <script>
- $('tr.blockRow').on('click touch',function(){
- })
- </script>
- </body>
- </html>
|