diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-06-13 22:11:21 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-06-13 22:11:21 -0400 |
commit | a9f976153983f8e611df14aa8ffed85bea052e0f (patch) | |
tree | d0638fcf66a3fc0cf4c7c41be1b7f175062007cd /app | |
parent | d577c73e46de23742bc069d0a444f0bedeca5abc (diff) |
Change table for automatic actions list
Diffstat (limited to 'app')
-rw-r--r-- | app/Template/action/index.php | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/app/Template/action/index.php b/app/Template/action/index.php index 9e98554c..ca9c6543 100644 --- a/app/Template/action/index.php +++ b/app/Template/action/index.php @@ -7,16 +7,25 @@ <h3><?= t('Defined actions') ?></h3> <table> <tr> - <th><?= t('Event name') ?></th> - <th><?= t('Action name') ?></th> + <th><?= t('Automatic actions') ?></th> <th><?= t('Action parameters') ?></th> <th><?= t('Action') ?></th> </tr> <?php foreach ($actions as $action): ?> <tr> - <td><?= $this->text->in($action['event_name'], $available_events) ?></td> - <td><?= $this->text->in($action['action_name'], $available_actions) ?></td> + <td> + <ul> + <li> + <?= t('Event name') ?> = + <strong><?= $this->text->in($action['event_name'], $available_events) ?></strong> + </li> + <li> + <?= t('Action name') ?> = + <strong><?= $this->text->in($action['action_name'], $available_actions) ?></strong> + </li> + <ul> + </td> <td> <ul> <?php foreach ($action['params'] as $param): ?> |