|
|
<div class="container"> <div class="row"> <div class="col-sm-4"> <div class="panel"> <div class="panel-heading c_deepPurpleG500to300"> <h3 class="panel-title">All travels</h3> </div> <div class="panel-body" style="max-height: 500px;overflow-y: scroll;"> <table class="table table-striped table-hover "> <thead> <tr> <th>Type</th> <th>Title</th> <th>Date</th> <th>User</th> <th>nºJoins</th> <th></th> </tr> </thead> <tbody> <tr ng-repeat="travel in travels"> <td> <i ng-show="travel.type=='offering'" class="fa fa-car fa-2x"></i> <i ng-show="travel.type=='asking'" class="fa fa-question fa-2x"></i> <i ng-show="travel.type=='package'" class="fa fa-archive fa-2x"></i> </td> <td>{{travel.title}}</td> <td>{{travel.date | date}}</td> <td> <a ng-href="#!/user/{{travel.user._id}}"> {{travel.user.username}} </a> </td> <td>{{travel.joins.length}}</td> <td><a ng-href="#!/travel/{{travel._id}}">View</a></td> </tr> </tbody> </table> </div> </div> </div> <div class="col-sm-8"> <div class="panel"> <div class="panel-heading c_deepPurpleG500to300"> <h3 class="panel-title">Map</h3> </div> <div class="panel-body"> <leaflet width="100%" height="600px" markers="markers" paths="paths" center="center" tiles="tiles" id="map-simple-map"></leaflet> </div> </div> </div> </div> </div>
|