Changeset 9 for trunk/grails-app/views/run/editForm.gsp
- Timestamp:
- Jan 28, 2011, 12:30:39 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/run/editForm.gsp
r4 r9 1 1 <h2>Edit run</h2> 2 2 <p> 3 Please enter data about the run below. Only the date is required.3 Please enter data about the run below. Only the name is required. 4 4 </p> 5 5 <% /* Test whether this run is used in other assays */ %> 6 <g:if test="${ run.assays.size() > 1}">6 <g:if test="${assay && run.assays.size() > 1}"> 7 7 <p> 8 8 <strong>Caution</strong>: other assays are also associated with this run. Your changes will … … 11 11 </g:if> 12 12 13 <g:form name="editRun" controller="run" action="update" id="${run.id}" params="[assayId:assay .id]">13 <g:form name="editRun" controller="run" action="update" id="${run.id}" params="[assayId:assay?.id]"> 14 14 <g:hiddenField name="run_id" value="${run.id}" id="edit_run_id" /><br /> 15 15 <label for="name">Name</label><g:textField name="run.name" value="${run.name}" id="edit_run_name" /><br />
Note: See TracChangeset
for help on using the changeset viewer.