Changeset 847
- Timestamp:
- Aug 27, 2010, 2:26:09 PM (12 years ago)
- Location:
- trunk/grails-app
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/dbnp/studycapturing/TemplateEntity.groovy
r825 r847 749 749 */ 750 750 static Collection<Template> giveTemplates(Collection<TemplateEntity> entityCollection) { 751 def set = entityCollection*.template .unique();751 def set = entityCollection*.template?.unique(); 752 752 753 753 // If one or more entities does not have a template, the resulting -
trunk/grails-app/views/wizard/pages/_groups.gsp
r778 r847 33 33 <div class="helpContent"> 34 34 <h1>${eventGroup.name}</h1> 35 <g:each var="event" status="e" in="${ eventGroup.events}">35 <g:each var="event" status="e" in="${(eventGroup.events + eventGroup.samplingEvents)}"> 36 36 <h2>${event.template}</h2> 37 37 <g:each var="field" status="f" in="${event.giveFields()}">
Note: See TracChangeset
for help on using the changeset viewer.