Show
Ignore:
Timestamp:
09/28/07 14:30:44 (14 months ago)
Author:
aarkerio
Message:

General update

Location:
trunk/app/views/colleges
Files:
2 modified

Legend:

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

    r176 r177  
    11<h2>Edit College</h2> 
    22<?php  
     3 
     4echo $javascript->link('fckeditor/fckeditor'); 
     5 
    36echo $html->formTag('/admin/colleges/edit/','post'); 
    47echo $html->hidden('College/id'); 
     
    1720    <?php echo $form->labelTag( 'College/description', 'Description' );?><br /> 
    1821    <?php echo $html->textarea('College/description', array('cols' => 60, 'rows' => 3));?> 
     22    <?php echo $fck->load('College/description', 'Karamelo'); ?> 
    1923    <?php echo $html->tagErrorMsg('College/description', 'Please enter the Description.');?> 
    2024</div> 
  • trunk/app/views/colleges/admin_listing.thtml

    r176 r177  
    11<?php  
    22//var_dump($data);  
     3echo $html->link('Edit', '/admin/colleges/edit/'.$data['College']['id']);  
    34?> 
    4 <div class="college"> 
     5 
    56<h2>View College</h2> 
    67 
     
    1718    <dd>&nbsp;<?php echo $data['College']['keywords']?></dd> 
    1819</dl> 
    19  
    20 </div>