Changeset 275 for trunk/grails-app/views/wizard/pages
- Timestamp:
- Mar 17, 2010, 12:35:31 PM (12 years ago)
- Location:
- trunk/grails-app/views/wizard/pages
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/wizard/pages/_done.gsp
r262 r275 16 16 %> 17 17 <wizard:pageContent> 18 You are done!19 18 20 19 <span class="info"> 21 <span class="todo">TODO</span> 22 <ul> 23 <li>persist the data to the database :) nothing is currently being saved...</li> 24 </ul> 20 <span class="todo">Finished!</span> 21 The study you have just created has been properly saved. 25 22 </span> 23 26 24 </wizard:pageContent> -
trunk/grails-app/views/wizard/pages/_eventDescriptions.gsp
r262 r275 45 45 <div class="column">protocol</div> 46 46 <div class="column">sampling event</div> 47 <div class="column">protocol</div>48 47 </div> 49 48 <g:each var="eventDescription" status="i" in="${eventDescriptions}"> … … 57 56 <div class="column"><wizard:protocolSelect name="eventDescription_${i}_protocol" value="${eventDescription.protocol}" /></div> 58 57 <div class="column"><g:checkBox name="eventDescription_${i}_isSamplingEvent" value="${eventDescription.isSamplingEvent}" /></div> 59 <div class="column"><g:if test="${eventDescription.protocol}">${eventDescription.protocol}</g:if><g:else>-</g:else></div>60 58 </div> 61 59 </g:each> -
trunk/grails-app/views/wizard/pages/_events.gsp
r262 r275 79 79 </div> 80 80 <div class="sliderContainer"> 81 <div class="slider" />81 <div class="slider"></div> 82 82 </div> 83 83 </g:if> 84 84 85 <span class="info"> 86 <span class="todo">TODO</span> 87 <ul> 88 <li>parameter values should still be asked and implemented</li> 89 </ul> 90 </span> 85 <span class="info"> 86 <span class="todo">TODO</span> 87 <ul> 88 <li>parameter values should still be asked and implemented</li> 89 </ul> 90 </span> 91 91 92 </wizard:pageContent> -
trunk/grails-app/views/wizard/pages/_subjects.gsp
r262 r275 19 19 <span class="title">Add subjects to your study</span> 20 20 In this screen you can add subjects to your study based on a given template. Note that the 'species' select will probably 21 move to the template as an ontology reference and will not be asked anymore. 21 move to the template as an ontology reference and will not be asked anymore.<br/> 22 <i>Note that you can edit multiple subjects at once by selecting multpiple rows by either ctrl-clicking them or dragging a selection over them.</i> 22 23 </span> 23 24 … … 36 37 <div class="header"> 37 38 <div class="firstColumn">#</div> 39 <div class="firstColumn"></div> 38 40 <div class="column">name</div> 39 41 <div class="column">species</div> … … 42 44 <g:each var="subjectId" in="${subjectTemplate.getValue().subjects}"> 43 45 <div class="row"> 44 <div class="firstColumn">${subjectId}</div> 46 <div class="firstColumn">${subjectId + 1}</div> 47 <div class="firstColumn"> 48 <wizard:ajaxButton name="delete" src="../images/icons/famfamfam/delete.png" alt="delete this subject" class="famfamfam" value="-" url="[controller:'wizard',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" before="\$(\'input[name=do]\').val(${subjectId});" afterSuccess="onWizardPage()" /> 49 </div> 45 50 <div class="column"><g:textField name="subject_${subjectId}_name" value="${subjects[ subjectId ].name}" size="12" maxlength="12" /></div> 46 51 <div class="column">
Note: See TracChangeset
for help on using the changeset viewer.