';
$options = array(
'guid' => $vars['entity']->getGUID(),
'annotation_name' => 'group_topic_post',
);
$html = elgg_list_annotations($options);
if ($html) {
echo '
' . elgg_echo('group:replies') . '
';
echo $html;
}
if ($show_add_form) {
$form_vars = array('class' => 'mtm');
echo elgg_view_form('discussion/reply/save', $form_vars, $vars);
}
echo '';