Changeset 3 for trunk/grails-app/views
- Timestamp:
- Jan 12, 2011, 9:45:08 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 6 added
- 4 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 4 4 .classpath 5 5 .project 6 fileuploads
-
- Property svn:ignore
-
trunk/grails-app/views/assay/_addFilesDialog.gsp
r2 r3 2 2 <h2>Upload sequence files</h2> 3 3 4 <g:form name="addFiles" controller="assay", action="process" id="${assay.id}"> 5 <p>Select the run these files belong to.</p> 6 <p> 7 <g:select name="selectedRun" from="${assay.runs}" optionKey="id" optionValue="name" /> 8 </p> 4 <g:form name="addFiles" controller="fasta" action="showProcessScreen" id="${assay.id}"> 5 <p>Select the run these files belong to: <g:select name="selectedRun" from="${assay.runs}" optionKey="id" optionValue="name" /></p> 9 6 <p> 10 7 Select sequence and quality files to upload. It is possible to zip the files before upload. -
trunk/grails-app/views/assay/show.gsp
r2 r3 11 11 <g:javascript src="assay.show.enterTagsDialog.js" /> 12 12 <g:javascript src="assay.show.runDialogs.js" /> 13 <g:javascript src="assay.show.showSampleDialog.js" /> 14 <g:javascript src="assay.show.showRunDialog.js" /> 13 15 14 16 <g:javascript src="fileuploader.new.js" /> … … 66 68 <g:each in="${assaySamples}" var="assaySample"> 67 69 <tr> 68 <td> ${assaySample.sample.name}</td>70 <td><a href="#" onClick="showSample(${assaySample.id}); return false;">${assaySample.sample.name}</a></td> 69 71 <td>${assaySample.tagSequence}</td> 70 72 <td>${assaySample.numSequences()}</td> … … 95 97 <g:render template="addFilesDialog" model="[assay: assay]" /> 96 98 </g:if> 99 <g:render template="showSampleDialog" model="[assay: assay]" /> 97 100 </g:else> 98 101 … … 108 111 <th nowrap>name</th> 109 112 <th nowrap>date</th> 113 <th nowrap>supplier</th> 110 114 <th nowrap>machine</th> 111 <th nowrap>supplier</th> 112 <th nowrap>configuration</th> 115 <th nowrap>parameter file</th> 113 116 <th nowrap>other assays</th> 114 117 <th class="nonsortable"></th> … … 120 123 <g:each in="${runs}" var="run"> 121 124 <tr> 122 <td> ${run.name}</td>125 <td><a href="#" onClick="showRun(${run.id}); return false;">${run.name}</a></td> 123 126 <td><g:formatDate format="dd-MM-yyyy" date="${run.date}"/></td> 127 <td>${run.supplier}</td> 124 128 <td>${run.machine}</td> 125 <td>${run.supplier}</td>126 129 <td><g:uploadedFile value="${run.parameterFile}"/></td> 127 130 <td> … … 148 151 <g:render template="editRunDialog" model="[assay: assay]" /> 149 152 </g:if> 153 <g:render template="showRunDialog" model="[assay: assay]" /> 154 150 155 </body> 151 156 </html> -
trunk/grails-app/views/fasta/showProcessResult.gsp
r2 r3 2 2 <head> 3 3 <meta name="layout" content="main" /> 4 <title>Process files for assay ${assay.name} | Metagenomics | dbNP</title>4 <title>Processed files for assay ${assay.name} | Metagenomics | dbNP</title> 5 5 6 <g:javascript src="jquery.ui.tabbeddialog.js" />7 8 6 <script> 9 7 var assayId = ${assay.id}; … … 66 64 </td> 67 65 <td> 68 ${selectedRun}69 66 <g:if test="${sortedRuns.size()}"> 70 67 <select name="file.${i}.run"> … … 116 113 117 114 <p> 118 <g:link action="show" id="${assay.id}">Return to assay</g:link>115 <g:link controller="assay" action="show" id="${assay.id}">Return to assay</g:link> 119 116 </p> 120 117 </body> -
trunk/grails-app/views/layouts/main.gsp
r2 r3 34 34 35 35 <div id="content"> 36 <g:if test="${lastSynchronized}"> 37 <p>Last full synchronization: ${lastSynchronized}</p> 38 </g:if> 36 39 <g:if test="${flash.error}"> 37 40 <p class="error">${flash.error}</p>
Note: See TracChangeset
for help on using the changeset viewer.