Skip to content

Commit

Permalink
Added requestedAt to Crawl Permission view.
Browse files Browse the repository at this point in the history
  • Loading branch information
anjackson committed Nov 17, 2015
1 parent 46ff69c commit afeec24
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/views/crawlpermissions/list.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,8 @@ <h1><a href="@routes.CrawlPermissionController.index()">Archivist Tasks > </a>Cr
<th>Contact Person</th>
<th>Status</th>
<th>Licence Form</th>
@header("requestedAt", "Requested Date")
@header("grantedAt", "Granted Date")
@header("updatedAt", "Updated Date")
</tr>
</thead>
<tbody>
Expand Down Expand Up @@ -200,12 +200,12 @@ <h1><a href="@routes.CrawlPermissionController.index()">Archivist Tasks > </a>Cr
<a href="@routes.LicenseController.formview(permission.token)" target="_blank">View</a>
}
</td>
<td>
@uk.bl.api.Utils.INSTANCE.convertToDateTime(permission.requestedAt)
</td>
<td>
@uk.bl.api.Utils.INSTANCE.convertToDateTime(permission.grantedAt)
</td>
<td>
@permission.toUpdatedAtString
</td>
</tr>
}
</tbody>
Expand Down

0 comments on commit afeec24

Please sign in to comment.