Dates in dashboard template are working now.

Changed column spacing to make Name column wider
pull/24/head
Jordan 2014-01-31 20:56:21 -06:00
parent 87fbd41184
commit c75e55154b
1 changed files with 4 additions and 4 deletions

View File

@ -28,14 +28,14 @@
<table class="table table-hover table-striped table-bordered">
<thead>
<tr>
<th>Date</th>
<th>Name</th>
<th>Status</th>
<th class="col-sm-1">Date</th>
<th class="col-sm-2">Name</th>
<th class="col-sm-1">Status</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="campaign in campaigns">
<td>{{campaign.id}}</td>
<td>{{campaign.created_date | date:'medium'}}</td>
<td>{{campaign.name}}</td>
<td>{{campaign.status}}</td>
</tr>