Skip to content

Commit

Permalink
Full css for Series
Browse files Browse the repository at this point in the history
  • Loading branch information
divins committed Apr 28, 2011
1 parent b9e1ea6 commit e317634
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions app_aeg/views/series/admin_index.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ echo $html->script('prototype');
<div class="grid_16" <?php echo "id='serie_".$series['Series']['id']."' ".$class; ?>>
<div class="grid_1 alpha"><?php echo $series['Series']['id']; ?>&nbsp;</div>
<div class="grid_2"><?php echo $series['Series']['codigo']; ?>&nbsp;</div>
<div class="grid_8"><?php echo $series['Series']['descripcion']; ?>&nbsp;</div>
<div class="grid_4 omega actions">
<div class="grid_11"><?php echo $series['Series']['descripcion']; ?>&nbsp;</div>
<div class="grid_1 omega actions">
<?php echo $ajax->link( $html->image( 'icons/page_edit_mini.png', array( 'alt' => __( 'Edicio Rapida', true ), 'title' => __( 'Edicio Rapida', true ) ) ), array('action' => 'quick_edit', $series['Series']['id'] ), array( 'escape'=>false, 'update' => 'serie_'.$series['Series']['id']) );//, 'after' => "popup('popUpDiv')" ) );?>
<?php echo $this->Html->link( $html->image( 'icons/cross.png', array( 'alt' => __( 'Eliminar Serie', true ), 'title' => __( 'Eliminar Serie', true ) ) ), array('action' => 'delete', $series['Series']['id']), array( 'escape'=>false ), sprintf(__('Estas segur de voler eliminar: %s?', true), $series['Series']['id'])); ?>
<?php echo $this->Html->link( $html->image( 'icons/cross.png', array( 'alt' => __( 'Eliminar Serie', true ), 'title' => __( 'Eliminar Serie', true ) ) ), array('action' => 'delete', $series['Series']['id']), array( 'escape'=>false ), sprintf(__('Estas segur de voler eliminar: %s?', true), $series['Series']['codigo'])); ?>
</div>
</div>
<div class="clear"></div>
Expand All @@ -38,8 +38,8 @@ echo $html->script('prototype');
</tr>-->

<?php endforeach; ?>
<p>
<?php
<!--<p>
<?php/*
echo $this->Paginator->counter(array(
'format' => utf8_encode( __('Pàgina %page% de %pages%, %count% motors coincideixen amb la cerca, mostrant de %start% al %end%', true) )
));
Expand All @@ -52,7 +52,7 @@ echo $html->script('prototype');
<?php echo $this->Paginator->next(__('Seguent', true) . ' >>', array(), null, array('class' => 'disabled'));?>
</div>
<!--<div class="actions">
<h3><?php /* __('Actions'); ?></h3>
<h3><?php*/ /* __('Actions'); ?></h3>
<ul>
<li><?php echo $this->Html->link(__('New Series', true), array('action' => 'add')); */ ?></li>
</ul>
Expand Down
6 changes: 3 additions & 3 deletions app_aeg/views/series/admin_quick_edit.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ $class="";
<?php //$ajax->form('quick_edit','serie',array('model'=>'Serie','update'=>'serie_'.$this->data['Series']['id'])); ?>
<div class="grid_1 alpha"><?php echo $this->data['Series']['id']; ?>&nbsp;</div>
<div class="grid_2"><?php echo $this->Form->input('codigo', array( 'label'=>false )); ?>&nbsp;</div>
<div class="grid_8"><?php echo $this->Form->input('descripcion', array( 'label'=>false )); ?>&nbsp;</div>
<div class="grid_4 omega actions">
<div class="grid_11"><?php echo $this->Form->input('descripcion', array( 'label'=>false, 'style'=>'width: 650px' )); ?>&nbsp;</div>
<div class="grid_1 omega actions">
<?php //echo $ajax->form->end(__('Guardar', true));?>
<?php echo $this->Form->input('id'); ?>
<?php echo $ajax->submit( 'icons/save.gif', array('url'=> array('controller'=>'series', 'action'=>'quick_edit'), 'update' => 'serie_'.$this->data['Series']['id'])); ?>
<?php echo $ajax->submit( 'icons/save.gif', array('url'=> array('controller'=>'series', 'action'=>'quick_edit'), 'update' => 'serie_'.$this->data['Series']['id'], 'style'=>'float:left')); ?>
<?php echo $ajax->link( $html->image( 'icons/page_cancel_mini.png', array( 'alt' => __( 'Cancelar', true ), 'title' => __( 'Cancelar', true ) ) ), array('action' => 'quick_edit', $this->data['Series']['id'], true ), array( 'escape'=>false, 'update' => 'serie_'.$this->data['Series']['id']) ); ?>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions app_aeg/views/series/admin_quick_edit_saved.ctp
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

<div class="grid_1 alpha"><?php echo $this->data['Series']['id']; ?>&nbsp;</div>
<div class="grid_2"><?php echo $this->data['Series']['codigo']; ?>&nbsp;</div>
<div class="grid_8"><?php echo $this->data['Series']['descripcion']; ?>&nbsp;</div>
<div class="grid_4 omega actions">
<div class="grid_11"><?php echo $this->data['Series']['descripcion']; ?>&nbsp;</div>
<div class="grid_1 omega actions">
<?php echo $ajax->link( $html->image( 'icons/page_edit_mini.png', array( 'alt' => __( 'Edicio Rapida', true ), 'title' => __( 'Edicio Rapida', true ) ) ), array('action' => 'quick_edit', $this->data['Series']['id'] ), array( 'escape'=>false, 'update' => 'serie_'.$this->data['Series']['id']) );//, 'after' => "popup('popUpDiv')" ) );?>
<?php echo $this->Html->link( $html->image( 'icons/cross.png', array( 'alt' => __( 'Eliminar Serie', true ), 'title' => __( 'Eliminar Serie', true ) ) ), array('action' => 'delete', $this->data['Series']['id']), array( 'escape'=>false ), sprintf(__('Estas segur de voler eliminar: %s?', true), $this->data['Series']['id'])); ?>
</div>

0 comments on commit e317634

Please sign in to comment.