Changeset 137
- Timestamp:
- Jan 26, 2010, 3:53:40 PM (13 years ago)
- Location:
- trunk/grails-app/views/study
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/study/list_extended.gsp
r135 r137 11 11 <script type="text/javascript"> 12 12 $(function() { 13 $("# accordion").accordion();13 $("#tabs").tabs(); 14 14 }); 15 15 </script> … … 44 44 <% }} %> 45 45 46 <table border="2"> 47 <g:each in="${att_list}" status="s" var="attribute"> 48 <tr> 49 <g:each in="${selectedStudies}" status="i" var="studyInstance"> 50 <div id="accordion"> 51 <td> 52 <a href="#"> ${message(code: 'study.id.'+attribute , default: attribute)} </a>: 53 <div>${fieldValue(bean: studyInstance, field: attribute)} </div> 54 </td> 55 </div> 46 47 <div id="tabs"> 48 <ul> 49 <g:each in="${selectedStudies}" status="i" var="studyInstance"> 50 <li><a href="#${studyInstance}"> ${studyInstance} </a></li> 51 </g:each> 52 </ul> 53 54 <g:each in="${selectedStudies}" status="i" var="studyIns"> 55 56 57 <div id="${studyIns}"> 58 <g:each in="${att_list}" status="s" var="attribute"> 59 ${message(code: 'study.id.'+attribute , default: attribute)} : 60 ${fieldValue(bean: studyIns, field: attribute)} 61 <br> 56 62 </g:each> 57 </tr> 58 </g:each> 59 </table> 60 </div> 63 </div> 64 65 </g:each> 66 </div> 67 68 </div> 69 61 70 62 71 </body> -
trunk/grails-app/views/study/show.gsp
r135 r137 1 1 2 <%@ page import="dbnp.studycapturing.Study" %> 2 3 <html>
Note: See TracChangeset
for help on using the changeset viewer.