Mercurial > hg > drupalISMI
view openmindattribute/templates/openmindattribute_PERSON.tpl.php @ 16:de0a06eef13b
new neo4j importer for network visualisation frontend.
author | casties |
---|---|
date | Fri, 28 Aug 2015 17:24:45 +0200 |
parents | cf772424f725 |
children |
line wrap: on
line source
<h3 class="openmindattribute-header">Details</h3> <table class="openmindattribute-table" > <tr class="openmindattribute-row"> <td class="openmindattribute-cell openmindattribute-name">Name</td> <td class="openmindattribute-cell"><?php print $attributes['name']['ov'] ?><br/> <?php print $attributes['name_translit']['romanization']?></td> </tr> <?php if (isset($attributes['birth_date_text']['ov'])): ?> <tr class="openmindattribute-row"> <td class="openmindattribute-cell openmindattribute-name">Birth Date</td> <td class="openmindattribute-cell"><?php print $attributes['birth_date_text']['ov'] ?></td> </tr> <?php endif; ?> <?php if (isset($relations['was_born_in'])): ?> <tr class="openmindattribute-row"> <td class="openmindattribute-cell openmindattribute-name">Place of Birth</td> <td class="openmindattribute-cell"><?php print $relations['was_born_in'][0]['target']->title ?></td> </tr> <?php endif; ?> <?php if (isset($attributes['death_date_text']['ov'])): ?> <tr class="openmindattribute-row"> <td class="openmindattribute-cell openmindattribute-name">Death Date</td> <td class="openmindattribute-cell"><?php print $attributes['death_date_text']['ov'] ?></td> </tr> <?php endif; ?> <?php if (isset($relations['died_in'])): ?> <tr class="openmindattribute-row"> <td class="openmindattribute-cell openmindattribute-name">Place of Death</td> <td class="openmindattribute-cell"><?php print $relations['died_in'][0]['target']->title ?></td> </tr> <?php endif; ?> <?php if (isset($relations['was_student_of'])): ?> <tr class="openmindattribute-row"> <td class="openmindattribute-cell openmindattribute-name">Teachers</td> <td class="openmindattribute-cell"><?php print $relations['was_student_of'][0]['target']->title ?></td> </tr> <?php endif; ?> <?php if (isset($attributes['notes']['ov'])): ?> <tr class="openmindattribute-row"> <td class="openmindattribute-cell openmindattribute-name">Notes</td> <td class="openmindattribute-cell"><?php print $attributes['notes']['ov'] ?></td> </tr> <?php endif; ?> </table>