summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/session/index.phtml
diff options
context:
space:
mode:
authormichael pereira2011-03-09 20:54:27 +0100
committermichael pereira2011-03-09 20:54:27 +0100
commitfbff9df0469ee998389fa263d8638cc3bf3618b5 (patch)
tree04adfd6a021e574055469ce6d0469988cb4684bd /application/views/scripts/session/index.phtml
parentKCL und BootMenuFilter (diff)
parentFilterController Evaluate funktioniert (diff)
downloadpbs2-fbff9df0469ee998389fa263d8638cc3bf3618b5.tar.gz
pbs2-fbff9df0469ee998389fa263d8638cc3bf3618b5.tar.xz
pbs2-fbff9df0469ee998389fa263d8638cc3bf3618b5.zip
Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2
Diffstat (limited to 'application/views/scripts/session/index.phtml')
-rw-r--r--application/views/scripts/session/index.phtml10
1 files changed, 5 insertions, 5 deletions
diff --git a/application/views/scripts/session/index.phtml b/application/views/scripts/session/index.phtml
index f98fa48..6e87acf 100644
--- a/application/views/scripts/session/index.phtml
+++ b/application/views/scripts/session/index.phtml
@@ -19,25 +19,25 @@
<td><?php echo $this->escape($session->getClientID()) ?></td>
<td><?php echo $this->escape($session->getBootosID()) ?></td>
<td><?php echo $this->escape($session->getBootisoID()) ?></td>
- <td><?php echo $this->escape($session->getTime()) ?></td>
+ <td><?php echo date('d.m.Y H:i',$this->escape($session->getTime())) ?></td>
<td><?php echo $this->escape($session->getIp()) ?></td>
<td><?php echo $this->escape($session->getIp6()) ?></td>
- <td><a href="<?php echo $this->url(
+ <td class='action'><a href="<?php echo $this->url(
array(
'controller' => 'session',
'action' => 'editsession',
'sessionID' => $session->getID()
),
'default',
- true) ?>">edit filter</a></td>
- <td><a href="<?php echo $this->url(
+ true) ?>"><img src='/media/img/edit.png' alt='Edit Filter'/></a></td>
+ <td class='action'><a href="<?php echo $this->url(
array(
'controller' => 'session',
'action' => 'deletesession',
'sessionID' => $session->getID()
),
'default',
- true) ?>">delete filter</a></td>
+ true) ?>"><img src='/media/img/delete.png' alt='Delete Filter'/></a></td>
</tr>
<?php endforeach ?>
</table>