/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk

« back to all changes in this revision

Viewing changes to codeigniter/application/views/viewStudentsBody.php

  • Committer: a11andoh
  • Date: 2013-05-28 09:50:55 UTC
  • mfrom: (112 lenasys_b)
  • mto: This revision was merged to the branch mainline in revision 115.
  • Revision ID: a11andoh@student.his.se-20130528095055-3ig3yvqebh08vmgz
blurp

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
                        </tr>
14
14
                        <? foreach($students as $s): ?>
15
15
                        <tr>
16
 
                                <td class="username"><?= $s->userName; ?></td>
17
 
                                <td class="name"><?= $s->name; ?></td>
18
 
                                <td class="email"><?= $s->email; ?></td>
19
 
                                <td class="edit"><a href="#" class="editStudentDetailsButton">Edit</a></td>
 
16
                                <td><?= $s->userName; ?></td>
 
17
                                <td><?= $s->name; ?></td>
 
18
                                <td><?= $s->email; ?></td>
 
19
                                <td><a href="#" class="editStudentDetailsButton">Edit</a></td>
20
20
                        </tr>
21
21
                        <? endforeach; ?>
22
22
                </table>