$result = userprojectapi::process_match_codes($matchcode);
$data_rows = $result[0];
$matchcode_row_index = $result[1];
if (plugin_config_get('ShowZIU')) {
    $data_rows = userprojectapi::process_no_issue_users($data_rows, $matchcode_row_index, $project_id);
}
html_page_top1(plugin_lang_get('menu_title'));
?>
   <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
   <script type="text/javascript" src="plugins/UserProjectView/javascript/table.js"></script>
   <link rel="stylesheet" href="plugins/UserProjectView/files/UserProjectView.css"/>
<?php 
if (!$print) {
    html_page_top2();
    # print whiteboard menu bar
    userprojectapi::htmlPluginTriggerWhiteboardMenu();
}
echo '<div id="manage-user-div" class="form-container">' . PHP_EOL;
if (userprojectapi::is_mantis_rel()) {
    echo '<table class="width100" cellspacing="1">' . PHP_EOL;
} else {
    echo '<table>' . PHP_EOL;
}
print_thead();
print_tbody($data_rows);
echo '</table>' . PHP_EOL;
echo '</div>' . PHP_EOL;
if (!$print) {
    html_page_bottom1();
}
/** ********************* table head area *************************************************************************** */