view.bucket.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 ninja.Bucket bucket
@extends(view.main.html, title: bucket.getName())
@section(sidebar) {
}
@section(header) {
@bucket.getName()
Private buckets can only be accessed using proper API keys. Public buckets can be accessed by anyone.
}
@if (bucket.isPrivate()) {
Make Public
} else {
Make Private
}
Object
@if(bucket.getObjects().isEmpty()) {
No objects found...
}
@for(ninja.StoredObject obj : bucket.getObjects()) {
@obj.getName()
@obj.getSize()@obj.getLastModified()
@i18n("NLS.delete")
}