view.index.html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of s3ninja Show documentation
Show all versions of s3ninja Show documentation
S3 ninja emulates the S3 API for development and testing purposes.
@*
* Made with all the love in the world
* by scireum in Remshalden, Germany
*
* Copyright by scireum GmbH
* http://www.scireum.de - [email protected]
*@
@args List buckets, String baseUrl, String accessKey, String secretKey
@extends(view.main.html, title: "Start")
@section(sidebar) {
- Storage Path
- @baseUrl
- Access Key
- @accessKey
- Secret Key
- @secretKey
}
Bucket
@if(buckets.isEmpty()) {
No buckets found...
}
@for(ninja.Bucket bucket : buckets) {
@bucket.getName()
@if(bucket.isPrivate()) {
private
}
@i18n("NLS.delete")
}