tripal_feature_genotypes.tpl.php 765 B

12345678910111213141516171819202122
  1. <?php
  2. $feature = $variables['node']->feature;
  3. $genotypes = $variables['tripal_feature']['genotypes'];
  4. ?>
  5. <?php if(count($genotypes) > 0){ ?>
  6. <div id="tripal_feature-genotypes-box" class="tripal_feature-info-box tripal-info-box">
  7. <div class="tripal_feature-info-box-title tripal-info-box-title">Genotypes</div>
  8. <div class="tripal_feature-info-box-desc tripal-info-box-desc">
  9. Genotypes of this <?php print $feature->type_id->name; ?> in various germplasm
  10. </div>
  11. <ul>
  12. <?php foreach ($genotypes as $g) {
  13. $genotype = $g->description;
  14. if (preg_match('/insufficient sequence/',$genotype)) { $genotype = "<font colour='grey'>".$genotype.'</font>'; }
  15. ?>
  16. <li><?php print $genotype; ?></li>
  17. <?php } ?>
  18. </ul>
  19. </div>
  20. <?php } ?>