default.view.tenants.select_tenant.html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sirius-biz Show documentation
Show all versions of sirius-biz Show documentation
Provides a framework for building web based business applications
@import sirius.biz.tenants.Tenant
@args Page tenants
@extends(view.wondergem.template.html, title: NLS.get("Tenant.select"))
@section(breadcrumbs) {
@i18n("Tenant.select")
}
@pageHeader("Tenant.select")
@tableSearchHeader(tenants, "tenants/select") {
@if (user.getCurrentUser().hasPermission("flag-spy-user")) {
@i18n("Tenant.selectMain")
}
}
@table(tenants) {
@i18n("Model.name")
@i18n("Model.id")
@i18n("Tenant.accountNumber")
@i18n("AddressData.street")
@i18n("AddressData.zip") @i18n("AddressData.city")
@for(sirius.biz.tenants.Tenant tenant : tenants.getItems()) {
@tenant.getName()
@tenant.getId()
@tenant.getAccountNumber()
@tenant.getAddress().getStreet()
@tenant.getAddress().getZip() @tenant.getAddress().getCity()
}
}
@pagination(tenants, "tenants/select")
© 2015 - 2025 Weber Informatics LLC | Privacy Policy