Changeset 547 for trunk/grails-app/views
- Timestamp:
- Jun 9, 2010, 1:11:31 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/simpleQuery/common/_query.gsp
r498 r547 8 8 <div id="simpleQuery" class="simplequery"> 9 9 <h1>Simple Query</h1> 10 11 12 10 13 11 <g:form action="pages" name="simpleQueryForm" id="simpleQueryForm"> … … 27 25 </div> 28 26 <g:submitButton name="search" value="Search" /> 27 </g:form> 29 28 30 29 <br><br> … … 34 33 <h3><a href="#">Clinical Data</a></h3> 35 34 <div class="element"> 35 <g:form action="pages" name="addCompound" id="addCompound"> 36 36 <div class="description">Compound (e.g. 'glucose')</div> 37 37 <div class="input"><g:textField name="compound" value="" /></div> 38 38 <div class="description">Value</div> 39 39 <div class="input"><g:textField name="compound_value" value="" /></div> 40 <g:submitButton name="add_compound" value="Add compound" /> 40 <g:submitButton id="addCompound" name="addCompound" value="Add compound" /> 41 </g:form> 41 42 </div> 42 43 43 44 <h3><a href="#">Transcriptomics</a></h3> 45 44 46 <div class="element"> 47 <g:form action="pages" name="addTransciptome" id="addTransciptome"> 45 48 <div class="description">List of Gene IDs or pathway IDs</div> 46 49 <div class="input"><g:textField name="genepath" value="" /></div> 47 50 <div class="description">Type of regulations</div> 48 51 <div class="input"><g:select name="regulation" from="" value="${regulation}" noSelection="['':'--- select regulation ---']"/></div> 49 <g:submitButton name="add_transciptome" value="Add transciptome" /> 52 <g:submitButton id="addTransciptome" name="addTransciptome" value="Add transciptome" /> 53 </g:form> 50 54 </div> 51 52 <h3><a href="#">Metabolomics</a></h3>53 <div>boe boe boe</div>54 55 </div> 55 56 56 </g:form> 57 <br><br> 58 59 <g:if test="${term}"> 60 <div class="table"> 61 Search results for term ${term} 62 63 <g:each var="tmpStudy" in="${studies}"> 64 <g:set var="study" value="${tmpStudy.getValue()}" /> 65 <div class="row"> 66 study x 67 </div> 68 </g:each> 69 </div> 70 </g:if> 57 71 58 72 </div>
Note: See TracChangeset
for help on using the changeset viewer.