Commit f16445b7 by Tuomas Riihimäki

Show login instead of nick in queuemgmt

1 parent 493a5124
Showing with 2 additions and 2 deletions
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
<h2>Currently reserving</h2> <h2>Currently reserving</h2>
<p:dataTable var="u" value="#{queueManageView.userReserving}"> <p:dataTable var="u" value="#{queueManageView.userReserving}">
<p:column> <p:column>
<h:outputText value="#{u.user.user.nick}" /> <h:outputText value="#{u.user.user.login}" />
</p:column> </p:column>
<p:column headerText="Created"> <p:column headerText="Created">
<h:outputText value="#{u.created}"> <h:outputText value="#{u.created}">
...@@ -66,7 +66,7 @@ ...@@ -66,7 +66,7 @@
<h2>In queue</h2> <h2>In queue</h2>
<p:dataTable var="u" value="#{queueManageView.userQueue}"> <p:dataTable var="u" value="#{queueManageView.userQueue}">
<p:column> <p:column>
<h:outputText value="#{u.user.user.nick}" /> <h:outputText value="#{u.user.user.login}" />
</p:column> </p:column>
<p:column headerText="Created"> <p:column headerText="Created">
<h:outputText value="#{u.created}"> <h:outputText value="#{u.created}">
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!