-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5dfbe83
commit 1f872cc
Showing
6 changed files
with
73 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<?php | ||
/** | ||
* @file | ||
* Master template file of rawpheno germplasm (raw data) field. | ||
* | ||
* * Available variables in $variables array (by array key): | ||
* - element_id - value/id used to in the id attribute of the main container element. All elments | ||
* inside this element can be referenced using this id. | ||
* - $validators: Information about the validators available. | ||
*/ | ||
print $variables['raw_data']; | ||
?> | ||
|
||
<div id="<?php print $variables['element_id']; ?>"> | ||
<div id="rawphenotypes-germplasm-field-header"> | ||
<div> | ||
<img src="<?php print $variables['path_img'] . 'icon-raw.jpg'; ?>" align="absmiddle"> <a href="#">What are Raw Phenotypes?</a> | ||
</div> | ||
|
||
<div> | ||
<div class="rawphenotypes-germplasm-nav"> | ||
<a href="/phenotypes/raw/download">Go To Download Page ❯</a> | ||
</div> | ||
</div> | ||
<div> </div> | ||
</div> | ||
|
||
<div id="rawphenotypes-define-raw-container" style="display: none;"> | ||
Raw Phenotypes are raw data, not computed or averaged values and have not been published. <a href="#">Okay, Got it!</a> | ||
</div> | ||
|
||
<div> | ||
<h1>GERMPLASM NAME: <span>5 Traits / 5 Experiments / 5 Locations</span></h1> | ||
</div> | ||
|
||
<div id="rawphenotypes-germplasm-warning" class="messages warning"> | ||
Please note that <i>some experiments</i> appear disabled. Please contact KnowPulse if you need access. | ||
</div> | ||
|
||
<div id="rawphenotypes-germplasm-table-wrapper"> | ||
<div id="rawphenotypes-germplasm-export-table"> | ||
<div>%s</div> | ||
</div> | ||
</div> | ||
|
||
<div><small>*Data export will launch a new window</small></div> | ||
</div> |