CommunityID/modules/users/views/scripts/personalinfo/show.phtml

13 lines
419 B
PHTML
Raw Normal View History

2019-07-17 20:08:50 +00:00
<div class="formGrid">
2019-07-17 20:16:19 +00:00
<?php foreach ($this->fields as $field): ?>
2019-07-17 20:08:50 +00:00
<div class="yui-gf">
<div class="yui-u first">
2019-07-17 20:16:19 +00:00
<?php echo $this->translate($field->name) ?>:
2019-07-17 20:08:50 +00:00
</div>
<div class="yui-u">
2019-07-17 20:16:19 +00:00
<?php echo is_null($field->value)? $this->translate('Not Entered') : $field->value ?>
2019-07-17 20:08:50 +00:00
</div>
</div>
2019-07-17 20:16:19 +00:00
<?php endforeach ?>
2019-07-17 20:08:50 +00:00
</div>