Skip to content

Commit

Permalink
Arreglos de vistas
Browse files Browse the repository at this point in the history
  • Loading branch information
michelej committed Jun 28, 2012
1 parent b14c628 commit 1443b7b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 251 deletions.
6 changes: 3 additions & 3 deletions app/views/eventualidades/editar.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
<th></th>
<th style="width:15%"><?php echo $this->Paginator->sort('Quincena', 'FECHA') ?></th>
<th style="width:10%"><?php echo $this->Paginator->sort('Mes', 'FECHA') ?></th>
<th style="width:10%"><?php echo $this->Paginator->sort('Año', 'FECHA') ?></th>
<th style="width:55%"><?php echo $this->Paginator->sort('Monto', 'VALOR') ?></th>
<th style="width:30%"><?php echo $this->Paginator->sort('Año', 'FECHA') ?></th>
<th style="width:35%"><?php echo $this->Paginator->sort('Monto', 'VALOR') ?></th>
<th style="width:10%; text-align: center" class="actions">Acciones</th>
</tr>
</thead>
Expand All @@ -54,7 +54,7 @@
<td><?php echo $eventualidad['DetalleEventualidad']['QUINCENA']." Quincena"; ?></td>
<td><?php echo $eventualidad['DetalleEventualidad']['MES']; ?></td>
<td><?php echo $eventualidad['DetalleEventualidad']['AÑO']; ?></td>
<td style="text-align: left"><?php echo $eventualidad['DetalleEventualidad']['VALOR']; ?></td>
<td style="text-align: left"><?php echo number_format($eventualidad['DetalleEventualidad']['VALOR'], 2, ',', '.'); ?></td>
<td class="actions">
<?php echo $this->Html->image("file_delete.png", array("alt" => " ", 'title' => 'Eliminar Eventualidad', 'width' => '18', 'heigth' => '18', 'url' => array('action' => 'quitar', $eventualidad['DetalleEventualidad']['id']))); ?>
</td>
Expand Down
2 changes: 1 addition & 1 deletion app/views/eventualidades/index.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<div class="pages-bottom">
<div class="actionbox">
<?php
echo $this->Paginator->counter(array('format' => 'Mostrando %current% Empleado(s), de un total de %count% Empleados'));
echo $this->Paginator->counter(array('format' => 'Mostrando %current% Eventualidad(es), de un total de %count% Eventualidades'));
?>
</div>
<div class="pagination">
Expand Down
245 changes: 0 additions & 245 deletions app/views/nominas/generar_archivo.ctp

This file was deleted.

4 changes: 2 additions & 2 deletions app/views/users/cambiar_password.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
<?php
echo $this->Form->create('User',array('url'=>array('controller'=>'users','action'=>'cambiar_password')));
echo "<div class='row'>";
echo "<div style='float:left;width:25%'>";
echo "<div style='margin-right: auto;margin-left: auto;width:25%'>";
echo $this->Form->input('OLD_PASSWORD', array('type'=>'password','div' => false, 'label' => 'Contraseña Actual', 'class' => 'small'));
echo "</div>";
echo "</div>";
echo "<div class='row'>";
echo "<div style='float:left;width:25%'>";
echo "<div style='margin-right: auto;margin-left: auto;width:25%'>";
echo $this->Form->input('PASSWORD', array('type'=>'password','div' => false, 'label' => 'Contraseña Nueva', 'class' => 'small'));
echo "</div>";
echo "</div>";
Expand Down

0 comments on commit 1443b7b

Please sign in to comment.