function getEventosTarifasDetalle()
 {
     $eventos = new eventosModel();
     $tarifasActuales = $eventos->getTarifasEventos($_POST['id_evento']);
     foreach ($tarifasActuales as $key => $rowFechas) {
         echo "<div class='col-md-3' id='canvasGetTarifa" . $rowFechas['id_evento_tarifa'] . "'>\n\t\t\t\t\t\t<label style='word-break: break-all; word-wrap: break-word;'>\n\t\t\t\t\t\t\tTipo de afiliación: <span class='bold'>" . $rowFechas['tipo_afiliacion'] . "</span>\n\t\t\t\t\t\t\t<br>\n\t\t\t\t\t\t\tTipo de estatus: <span class='bold'>" . $rowFechas['tipo_estatus'] . "</span>\n\t\t\t\t\t\t\t<br>\n\t\t\t\t\t\t\tTarifa: <span class='bold'>" . $rowFechas['simbolo'] . $rowFechas['tarifa'] . " " . $rowFechas['tipo_moneda'] . "</span>\n\t\t\t\t\t\t\t<br>\n\t\t\t\t\t\t\tNombre de moneda: <span class='bold'>" . $rowFechas['nombre_moneda'] . "</span>\n\t\t\t\t\t\t\t<br>Fecha de vencimiento: <span class='bold'>" . $rowFechas['fecha_vencimiento'] . "</span>\n\t\t\t\t\t\t</label>\n\t\t\t\t\t\t<button class='btn btn-danger' onclick='confirmarDelTarifa(" . $rowFechas['id_evento_tarifa'] . ",\"#modalMsg\");'> <i class='fa fa-trash-o'>\n\t\t\t\t\t\t\tELIMINAR</i>\n\t\t\t\t\t\t</button>\n\t\t\t\t\t</div>";
     }
 }