📄 show.gsp
字号:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <g:javascript library="racetrack" /> <meta name="layout" content="main" /> <title>Show Registration</title> </head> <body> <div class="nav"> <span class="menuButton"><a href="${createLinkTo(dir:'')}">Home</a></span> <span class="menuButton"><g:link action="list">Registration List</g:link></span> <span class="menuButton"><g:link action="create">New Registration</g:link></span> <g:render template="/adminmenubar" /> </div> <div class="body"> <h1>Show Registration</h1> <g:if test="${flash.message}"> <div class="message">${flash.message}</div> </g:if> <div class="dialog"> <table> <tr class="prop"> <td valign="top" class="name">Name:</td> <td valign="top" class="value">${registration.name}</td> </tr> <tr class="prop"> <td valign="top" class="name">Date Of Birth:</td> <td valign="top" class="value"><g:formatDate date="${registration.dateOfBirth}" format="yyyy-MMM-dd"/></td> </tr> <tr class="prop"> <td valign="top" class="name">Gender:</td> <td valign="top" class="value">${registration.gender}</td> </tr> <tr class="prop"> <td valign="top" class="name">Postal Address:</td> <td valign="top" class="value">${registration.postalAddress}</td> </tr> <tr class="prop"> <td valign="top" class="name">Email Address:</td> <td valign="top" class="value">${registration.emailAddress}</td> </tr> <tr class="prop"> <td valign="top" class="name">Race:</td> <td valign="top" class="value"><g:link controller="race" action="show" id="${registration?.race?.id}">${registration?.race}</g:link></td> </tr> <tr class="prop"> <td valign="top" class="name">Created At:</td> <td valign="top" class="value">${registration.createdAt}</td> </tr> </table> </div> <div class="buttons"> <g:form controller="registration"> <input type="hidden" name="id" value="${registration?.id}" /> <span class="button"><g:actionSubmit value="Edit" /></span> <span class="button"><g:actionSubmit value="Delete" onclick="return warnBeforeRegistrationDelete();"/></span> </g:form> </div> </div> </body></html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -