Stylování vzhledu.
@ -1,11 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<title>Objednávky</title>
|
||||
</head>
|
||||
<body>
|
||||
administrace
|
||||
</body>
|
||||
</html>
|
@ -1,47 +1,65 @@
|
||||
<?page title="Informace" contentType="text/html;charset=UTF-8"?>
|
||||
<zk>
|
||||
<window border="normal" apply="org.zkoss.bind.BindComposer"
|
||||
<window
|
||||
vflex="1"
|
||||
border="normal"
|
||||
apply="org.zkoss.bind.BindComposer"
|
||||
viewModel="@id('vm') @init('info.bukova.isspst.ui.dashboard.DashBoardVM')">
|
||||
<caption zclass="form-caption" label="${labels.Information}" />
|
||||
<vbox>
|
||||
<caption
|
||||
zclass="form-caption"
|
||||
label="${labels.Information}" />
|
||||
<vbox vflex="1">
|
||||
<hbox>
|
||||
<label value="${labels.LogedInUser}"/> <image src="/img/user-small.png"/> <label value="@load(vm.user)"/>
|
||||
<label value="${labels.LogedInUser}" />
|
||||
<image src="/img/user-small.png" />
|
||||
<label value="@load(vm.user)" />
|
||||
</hbox>
|
||||
<groupbox mold="3d">
|
||||
<caption image="/img/commission-small.png" label="${labels.CentresForRequirements}"/>
|
||||
<groupbox
|
||||
vflex="1"
|
||||
mold="3d">
|
||||
<caption
|
||||
image="/img/commission-small.png"
|
||||
label="${labels.CentresForRequirements}" />
|
||||
<hbox children="@load(vm.centres)">
|
||||
<template name="children">
|
||||
<listbox model="@load(vm.groupRoles[each])">
|
||||
<listhead>
|
||||
<listheader label="@load(each.fullName)"/>
|
||||
<listheader label="@load(each.fullName)" />
|
||||
</listhead>
|
||||
<template name="model" var="role">
|
||||
<template
|
||||
name="model"
|
||||
var="role">
|
||||
<listitem>
|
||||
<listcell label="@load(role.description)"/>
|
||||
<listcell label="@load(role.description)" />
|
||||
</listitem>
|
||||
</template>
|
||||
</listbox>
|
||||
</template>
|
||||
</hbox>
|
||||
</groupbox>
|
||||
<groupbox mold="3d">
|
||||
<caption image="/img/commission-small.png" label="${labels.WorkgroupMembership}"/>
|
||||
<groupbox
|
||||
vflex="1"
|
||||
mold="3d">
|
||||
<caption
|
||||
image="/img/commission-small.png"
|
||||
label="${labels.WorkgroupMembership}" />
|
||||
<hbox children="@load(vm.workgroups)">
|
||||
<template name="children">
|
||||
<listbox model="@load(vm.groupRoles[each])">
|
||||
<listhead>
|
||||
<listheader label="@load(each.fullName)"/>
|
||||
<listheader label="@load(each.fullName)" />
|
||||
</listhead>
|
||||
<template name="model" var="role">
|
||||
<template
|
||||
name="model"
|
||||
var="role">
|
||||
<listitem>
|
||||
<listcell label="@load(role.description)"/>
|
||||
<listcell label="@load(role.description)" />
|
||||
</listitem>
|
||||
</template>
|
||||
</listbox>
|
||||
</template>
|
||||
</hbox>
|
||||
</groupbox>
|
||||
</vbox>
|
||||
|
||||
</window>
|
||||
</vbox>
|
||||
</window>
|
||||
</zk>
|
After Width: | Height: | Size: 585 B |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 816 B |
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 893 B |
@ -1,15 +1,14 @@
|
||||
<html xmlns="native" xmlns:u="zul" xmlns:zk="zk">
|
||||
<html
|
||||
xmlns="native"
|
||||
xmlns:u="zul"
|
||||
xmlns:zk="zk">
|
||||
<head>
|
||||
<title>Objednávky</title>
|
||||
<title>${labels.Loggingin}</title>
|
||||
</head>
|
||||
<body style="height: 100%; padding: 0 5px;">
|
||||
|
||||
<div style="height: 15%"/>
|
||||
|
||||
<div align="center">
|
||||
|
||||
<u:include src="login.zul"/>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
<div style="height: 15%" />
|
||||
<div align="center">
|
||||
<u:include src="login.zul" />
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|