~critecia/critecia/trunk

« back to all changes in this revision

Viewing changes to src/app/views/hospitals/edit.ctp

  • Committer: Christian A. Reiter
  • Date: 2011-11-16 20:08:35 UTC
  • Revision ID: christian.a.reiter@gmail.com-20111116200835-h3xx0ekm47lububw
fixed jQuery file links

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<div>
2
 
<?php echo $this->Form->create('Hospital');?>
3
 
                <h2><?php echo '"'.$this->data['Hospital']['shortname'].'"'; ?> bearbeiten</h2>
4
 
        <?php
5
 
                //debug($this->data);
6
 
                echo $this->Form->input('id');
7
 
                echo $this->Form->input('name', array('style' => 'width:250px'));
8
 
                echo $this->Form->input('shortname', array('label'=>'Kurzname, z.B. "LKH Graz"', 'style' => 'width:80px'));
9
 
                echo $this->Form->input('company', array('label'=>'Betreibergesellschaft/Holding'));
10
 
                echo $this->Form->input('phone', array('label'=>'Telefonnummer'));
11
 
                echo '<div>';
12
 
                echo $this->Form->input('street', array('label'=>'Straße', 'style' => 'width:250px', 'div' => array('class' =>'input text input-street')));
13
 
                echo $this->Form->input('streetnumber', array('label'=>'Hausnummer', 'style' => 'width:60px', 'div' => array('class' =>'input text input-streetnumber')));
14
 
                echo '</div><div>';
15
 
                echo $this->Form->input('postalcode', array('label'=>'Postleitzahl', 'style' => 'width:60px', 'div' => array('class' =>'input text input-postalcode')));
16
 
                echo $this->Form->input('city', array('label'=>'Ort/Stadt', 'div' => array('class' =>'input text input-city')));
17
 
                echo $this->Form->input('state', array('label'=>'Land'));
18
 
                echo '</div>';
19
 
                echo $this->Form->input('xcoord');
20
 
                echo $this->Form->input('ycoord');
21
 
        ?>
22
 
<?php echo $this->Form->end('Speichern');?>
23
 
</div>
24