Show
Ignore:
Timestamp:
10/11/07 10:31:26 (14 months ago)
Author:
aarkerio
Message:

Tesis

Location:
trunk/app/views/acquaintances
Files:
1 added
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/app/views/acquaintances/admin_edit.thtml

    r199 r200  
    33<?php echo $html->getCrumbs(' / '); ?> 
    44 
    5 <?php echo $html->formTag('/admin/acquintances/edit/','post'); ?> 
     5<?php echo $html->formTag('/admin/acquaintances/edit/','post'); ?> 
    66 
    7 <?php echo $html->hiddenTag('Quote/id'); ?> 
     7<?php echo $html->hiddenTag('Acquaintance/id'); ?> 
    88 
    99<fieldset> 
    10 <legend>Edit new</legend> 
     10<legend>Edit link</legend> 
    1111 <?php  
    12    echo $form->labelTag('Acquaintance/quote', 'Quote:' );  
    13    echo $html->input('/quote', array("size" => 60, "maxlength" => 150)); 
    14    echo $html->tagErrorMsg('/quote', 'Title is required.');  
     12   echo $form->labelTag('Acquaintance/name', 'Name:' );  
     13   echo $html->input('Acquaintance/name', array("size" => 50, "maxlength" => 50)); 
     14   echo $html->tagErrorMsg('Acquaintance/name', 'Title is required.');  
    1515    
    16    echo $form->labelTag('/quote', 'Author:' );  
    17    echo $html->input('/author', array("size" => 25, "maxlength" => 70)); 
    18    echo $html->tagErrorMsg('/author', 'Author is required.');  
     16   echo $form->labelTag('Acquaintance/url', 'Link:' );  
     17   echo $html->input('Acquaintance/url', array("size" => 65, "maxlength" => 220)); 
     18   echo $html->tagErrorMsg('Acquaintance/url', 'Link is required.'). '<br />';  
     19  
     20    echo $html->submit('Save');  
    1921 ?> 
    20  
    21   <?php echo $html->submit('Save');  ?> 
    2222</fieldset> 
    2323</form>