| <html> |
| <head> |
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> |
| <meta name="layout" content="main" /> |
| <title>Show User</title> |
| </head> |
| <body> |
| <div class="nav"> |
| <span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span> |
| <span class="menuButton"><g:link class="list" action="list">User List</g:link></span> |
| <span class="menuButton"><g:link class="create" action="create">New User</g:link></span> |
| </div> |
| <div class="body"> |
| <h1>Show User</h1> |
| <g:if test="${flash.message}"> |
| <div class="message">${flash.message}</div> |
| </g:if> |
| <div class="dialog"> |
| <table> |
| <tbody> |
| |
| <tr class="prop"> |
| <td valign="top" class="name">Id:</td> |
| |
| <td valign="top" class="value">${user.id}</td> |
| |
| </tr> |
| |
| <tr class="prop"> |
| <td valign="top" class="name">Email:</td> |
| |
| <td valign="top" class="value">${user.email}</td> |
| |
| </tr> |
| |
| <tr class="prop"> |
| <td valign="top" class="name">Nickname:</td> |
| |
| <td valign="top" class="value">${user.nickname}</td> |
| |
| </tr> |
| |
| <tr class="prop"> |
| <td valign="top" class="name">Opt In:</td> |
| |
| <td valign="top" class="value">${user.optIn}</td> |
| |
| </tr> |
| |
| </tbody> |
| </table> |
| </div> |
| <div class="buttons"> |
| <g:form controller="user"> |
| <input type="hidden" name="id" value="${user?.id}" /> |
| <span class="button"><g:actionSubmit class="edit" value="Edit" /></span> |
| <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span> |
| </g:form> |
| </div> |
| </div> |
| </body> |
| </html> |
| ----- |
| <html> |
| <head> |
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> |
| <meta name="layout" content="main"/> |
| <title>Show User</title> |
| </head> |
| |
| <body> |
| <div class="nav"> |
| <span class="menuButton"><a class="home" href="${createLinkTo(dir: '')}">Home</a></span> |
| <span class="menuButton"><g:link class="list" action="list">User List</g:link></span> |
| <span class="menuButton"><g:link class="create" action="create">New User</g:link></span> |
| </div> |
| |
| <div class="body"> |
| <h1>Show User</h1> |
| <g:if test="${flash.message}"> |
| <div class="message">${flash.message}</div> |
| </g:if> |
| <div class="dialog"> |
| <table> |
| <tbody> |
| |
| <tr class="prop"> |
| <td valign="top" class="name">Id:</td> |
| |
| <td valign="top" class="value">${user.id}</td> |
| |
| </tr> |
| |
| <tr class="prop"> |
| <td valign="top" class="name">Email:</td> |
| |
| <td valign="top" class="value">${user.email}</td> |
| |
| </tr> |
| |
| <tr class="prop"> |
| <td valign="top" class="name">Nickname:</td> |
| |
| <td valign="top" class="value">${user.nickname}</td> |
| |
| </tr> |
| |
| <tr class="prop"> |
| <td valign="top" class="name">Opt In:</td> |
| |
| <td valign="top" class="value">${user.optIn}</td> |
| |
| </tr> |
| |
| </tbody> |
| </table> |
| </div> |
| |
| <div class="buttons"> |
| <g:form controller="user"> |
| <input type="hidden" name="id" value="${user?.id}"/> |
| <span class="button"><g:actionSubmit class="edit" value="Edit"/></span> |
| <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete"/></span> |
| </g:form> |
| </div> |
| </div> |
| </body> |
| </html> |