Changeset 942
- Timestamp:
- Oct 14, 2010, 1:06:06 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/application.properties
r940 r942 5 5 app.servlet.version=2.4 6 6 app.version=0.5.0 7 #plugins.aaaa=0.3.57 plugins.aaaa=0.3.5 8 8 plugins.crypto=2.0 9 9 plugins.db-util=0.4 -
trunk/grails-app/controllers/dbnp/studycapturing/AssayController.groovy
r697 r942 47 47 } 48 48 } 49 50 def showByToken = { 51 def assayInstance = Assay.findByExternalAssayID(params.id) 52 if (!assayInstance) { 53 flash.message = "${message(code: 'default.not.found.message', args: [message(code: 'assay.label', default: 'Assay'), params.id])}" 54 redirect(action: "list") 55 } 56 else { 57 redirect(action: "show", id: assayInstance.id) 58 } 59 } 49 60 50 61 def edit = { -
trunk/grails-app/views/assay/show.gsp
r697 r942 57 57 58 58 </tr> 59 59 60 <g:each var="field" in="${assayInstance.giveTemplateFields()}"> 61 <tr class="prop"> 62 <td valign="top" class="name">${field.name}</td> 63 64 <td valign="top" class="value">${assayInstance.getFieldValue(field.name)?.encodeAsHTML()}</td> 65 </tr> 66 </g:each> 67 60 68 <tr class="prop"> 61 69 <td valign="top" class="name"><g:message code="assay.samples.label" default="Samples" /></td> -
trunk/grails-app/views/study/show.gsp
r936 r942 597 597 <th></th> 598 598 </g:if> 599 <th width="100">Assay Code</th> 599 600 <th width="100">Assay Name</th> 600 601 <th width="100">Module</th> … … 614 615 </td> 615 616 </g:if> 617 <td>${assay.token}</td> 616 618 <td>${assay.name}</td> 617 619 <td>${assay.module.name}</td>
Note: See TracChangeset
for help on using the changeset viewer.