|
Revision 934, 0.6 kB
(checked in by aarkerio, 13 hours ago)
|
|
Little enhancements
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | //die(debug($data)); |
|---|
| 3 | e($html->para(null, $data['Participation']['title'], array('style'=>'font-size:14pt;'))); |
|---|
| 4 | e($html->div(null, $html->image('avatars/'.$data['User']['avatar'], array('alt'=>$data['User']['username'], 'title'=>$data['User']['username'])))); |
|---|
| 5 | e($html->div(null, __('Student', true) . ': '. $data['User']['name'])); |
|---|
| 6 | e($html->div(null, __('Created', true) . ': '. $data['Participation']['created'])); |
|---|
| 7 | e($html->div(null, $data['Participation']['participation'])); |
|---|
| 8 | e($html->div(null, __('Points', true) . ': '. $data['Participation']['points'])); |
|---|
| 9 | ?> |
|---|