mirror of https://github.com/gophish/gophish
Dates in dashboard template are working now.
Changed column spacing to make Name column widerpull/24/head
parent
87fbd41184
commit
c75e55154b
|
@ -28,14 +28,14 @@
|
||||||
<table class="table table-hover table-striped table-bordered">
|
<table class="table table-hover table-striped table-bordered">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Date</th>
|
<th class="col-sm-1">Date</th>
|
||||||
<th>Name</th>
|
<th class="col-sm-2">Name</th>
|
||||||
<th>Status</th>
|
<th class="col-sm-1">Status</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr ng-repeat="campaign in campaigns">
|
<tr ng-repeat="campaign in campaigns">
|
||||||
<td>{{campaign.id}}</td>
|
<td>{{campaign.created_date | date:'medium'}}</td>
|
||||||
<td>{{campaign.name}}</td>
|
<td>{{campaign.name}}</td>
|
||||||
<td>{{campaign.status}}</td>
|
<td>{{campaign.status}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
Loading…
Reference in New Issue