</button>
  <ul class="dropdown-menu" role="menu">
    <li><a href="report/clients-word.php">Word 2007 (.docx)</a></li>
  </ul>
</div>
-->
</div>
		<h1>Historial de Eventos</h1>
<h4>Ministerio: <?php 
echo $pacient->name;
?>
</h4>

<br>
		<?php 
$users = EventData::getAllByProjectId($_GET["id"]);
if (count($users) > 0) {
    // si hay usuarios
    ?>
			<table class="table table-bordered table-hover">
			<thead>
			<th>Titulo</th>
			<th>Categoria</th>
			<th>Fecha</th>
			</thead>
			<?php 
    foreach ($users as $user) {
        $category = $user->getCategory();
        ?>
				<tr>
				<td><?php