Maybe adding this to your qa-theme.php file might do the trick:
public function part_title($part) {
qa_html_theme_base::part_title($part);
if ($this->template === 'user' &&
isset($part['fields']['duration']) &&
qa_is_logged_in())
{
$this->output('<div>Some HTML here</div>');
}
}