Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Riina Antikainen
/
Moya
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 435fa2c8
authored
May 10, 2013
by
Antti Tönkyrä
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
overview
1 parent
30aaa2bc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
6 deletions
code/MoyaWeb/WebContent/useradmin/overview.xhtml
code/MoyaWeb/WebContent/useradmin/overview.xhtml
View file @
435fa2c
...
...
@@ -4,13 +4,23 @@
<html
xmlns=
"http://www.w3.org/1999/xhtml"
xmlns:ui=
"http://java.sun.com/jsf/facelets"
xmlns:h=
"http://java.sun.com/jsf/html"
xmlns:users=
"http://java.sun.com/jsf/composite/cditools/user"
xmlns:tools=
"http://java.sun.com/jsf/composite/cditools"
xmlns:p=
"http://primefaces.org/ui"
xmlns:f=
"http://java.sun.com/jsf/core"
>
<h:body>
<ui:composition
template=
"#{sessionHandler.template}"
>
<ui:define
name=
"content"
>
<ui:composition
template=
"#{sessionHandler.template}"
>
<ui:define
name=
"content"
>
<p:dataTable
value=
"#{userCartView.usercart}"
var=
"cartItem"
>
<p:column
headerText=
"kuva"
>
<ui:fragment
rendered=
"#{!empty cartItem.currentImage}"
>
<img
style=
"width: 150px;"
src=
"#{request.contextPath}/dydata/userimage/#{cartItem.currentImage.id}.img"
alt=
"image"
/>
</ui:fragment>
<ui:fragment
rendered=
"#{empty cartItem.currentImage}"
>
<h:outputText
value=
"#{i18n['overview.noimage']}"
/>
</ui:fragment>
</p:column>
<p:column
headerText=
"nimi"
>
<h:outputText
value=
"#{cartItem.firstnames} #{cartItem.lastname}"
/>
</p:column>
</p:dataTable>
</ui:define>
</ui:composition>
</ui:define>
</ui:composition>
</h:body>
</html>
\ No newline at end of file
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment