Changeset 210 for trunk/grails-app/views/study/list.gsp
- Timestamp:
- Feb 23, 2010, 10:23:37 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/study/list.gsp
r171 r210 26 26 <table> 27 27 <tr> 28 <td ></td>28 <td width="50"></td> 29 29 <td colspan="3"> 30 30 <center><b>${studyInstance.title}</b></center> … … 36 36 <input type="checkbox" name="${studyInstance.title}" id="${studyInstance.title}"></td> 37 37 38 <td >38 <td width="150"> 39 39 <g:link action="show" id="${studyInstance.id}"> 40 40 ${message(code: 'study.id.label', default: 'Id')} : 41 41 ${fieldValue(bean: studyInstance, field: "id")}</g:link></td> 42 42 43 <td>43 <td width="300"> 44 44 <b>${message(code: 'study.template.label', default: 'Template')} </b>: 45 45 ${fieldValue(bean: studyInstance, field: "template")}</td> … … 57 57 58 58 <td > 59 <b>Assays </b>: </td> 59 <b>Assays </b>: 60 <g:each in="${studyInstance.assays}" var="assay"> 61 ${assay.name} 62 </g:each> 63 </td> 64 65 <td><b> Samples </b>: 66 <g:each in="${studyInstance.assays.samples}" var="samples"> 67 ${samples.name} 68 </g:each> 69 </td> 70 71 60 72 </tr> 61 73 <tr>
Note: See TracChangeset
for help on using the changeset viewer.