blob: 2f473d923c55baadcb5aa36e37dc7d7f44ece2c4 [file] [log] [blame]
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
<ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder'
xmlns:g='urn:import:com.google.gwt.user.client.ui'>
<ui:style>
.fields {
margin-top: 0.5em;
margin-left: 1em;
}
.label {
font-weight: bold;
min-height: 25px;
}
.button {
margin-right: 1em;
}
.bar {
margin-left: 1em;
}
.header {
margin-left: 1em;
color: #4B4A4A;
text-shadow: #ddf 1px 1px 0;
margin-bottom: 0;
}
.underline {
border-bottom: 2px solid #6F7277;
}
</ui:style>
<g:HTMLPanel>
<div class='{style.underline}'>
<h3 class='{style.header}'><ui:msg>Employee <span ui:field='idSpan' /> (v<span ui:field='versionSpan'/>)</ui:msg></h3>
</div>
<table class='{style.fields}'>
<tr><td><div class='{style.label}'>Display Name:</div></td><td><span ui:field='displayName'></span></td></tr>
<tr><td><div class='{style.label}'>User Name:</div></td><td><span ui:field='userName'></span></td></tr>
<tr><td><div class='{style.label}'>Supervisor:</div></td><td><span ui:field='supervisor'></span></td></tr>
<tr><td><div class='{style.label}'>Password:</div></td><td><span ui:field='password'></span></td></tr>
</table>
<div class='{style.bar}'>
<g:Button addStyleNames='{style.button}' ui:field='edit'>Edit</g:Button>
<g:Anchor ui:field='delete'>Delete</g:Anchor>
</div>
</g:HTMLPanel>
</ui:UiBinder>