diff --git a/application/views/scripts/dashboard/settings.phtml b/application/views/scripts/dashboard/settings.phtml
index 2ac9a1dfa..10ad613de 100644
--- a/application/views/scripts/dashboard/settings.phtml
+++ b/application/views/scripts/dashboard/settings.phtml
@@ -44,12 +44,20 @@
getDisabled() === true) continue; ?>
-
- = $dashlet->getTitle(); ?>
-
+ = $this->qlink(
+ $dashlet->getTitle(),
+ 'dashboard/update-dashlet',
+ array('pane' => $pane->getName(), 'dashlet' => $dashlet->getTitle()),
+ array('title' => sprintf($this->translate('Edit dashlet %s'), $dashlet->getTitle()))
+ ); ?>
|
- = $dashlet->getUrl(); ?>
+ = $this->qlink(
+ $dashlet->getUrl(),
+ $dashlet->getUrl(),
+ null,
+ array('title' => sprintf($this->translate('Show dashlet %s'), $dashlet->getTitle()))
+ ); ?>
|
= $this->qlink(
|