default.view.codelists.code-lists.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.codelists.CodeList
@args Page lists
@extends(view.wondergem.template.html, title: NLS.get("CodeList.plural"))
@section(breadcrumbs) {
@i18n("CodeList.plural")
}
@pageHeader("CodeList.plural")
@tableSearchHeader(lists, "code-lists") {
@i18n("Model.create")
}
@table(lists) {
@i18n("CodeList.code")
@i18n("Model.id")
@i18n("Model.name")
@i18n("Model.description")
@for(CodeList list : lists.getItems()) {
@list.getCode()
@list.getId()
@list.getName()
@list.getDescription()
@deleteLink(("code-list/" + list.getId() + "/delete?" + lists.createQueryString()))
}
}
@pagination(lists, "code-lists")
© 2015 - 2025 Weber Informatics LLC | Privacy Policy