Changeset 177 for trunk/app/views/colleges
- Timestamp:
- 09/28/07 14:30:44 (14 months ago)
- Location:
- trunk/app/views/colleges
- Files:
-
- 2 modified
-
admin_edit.thtml (modified) (2 diffs)
-
admin_listing.thtml (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/views/colleges/admin_edit.thtml
r176 r177 1 1 <h2>Edit College</h2> 2 2 <?php 3 4 echo $javascript->link('fckeditor/fckeditor'); 5 3 6 echo $html->formTag('/admin/colleges/edit/','post'); 4 7 echo $html->hidden('College/id'); … … 17 20 <?php echo $form->labelTag( 'College/description', 'Description' );?><br /> 18 21 <?php echo $html->textarea('College/description', array('cols' => 60, 'rows' => 3));?> 22 <?php echo $fck->load('College/description', 'Karamelo'); ?> 19 23 <?php echo $html->tagErrorMsg('College/description', 'Please enter the Description.');?> 20 24 </div> -
trunk/app/views/colleges/admin_listing.thtml
r176 r177 1 1 <?php 2 2 //var_dump($data); 3 echo $html->link('Edit', '/admin/colleges/edit/'.$data['College']['id']); 3 4 ?> 4 <div class="college"> 5 5 6 <h2>View College</h2> 6 7 … … 17 18 <dd> <?php echo $data['College']['keywords']?></dd> 18 19 </dl> 19 20 </div>
