Commit 93f19394787e74fba805dafb71092c551151ef22
1 parent
07cf269d
add missing workflow page.
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@5989 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
23 additions
and
0 deletions
templates/ktcore/workflow/admin/manage_notifications.smarty
0 → 100644
| 1 | +<h2>{i18n}Workflow Notifications{/i18n}</h2> | |
| 2 | + | |
| 3 | +<p class="descriptiveText">{i18n}Please select which roles or groups should be informed when each state is reached.{/i18n}</p> | |
| 4 | + | |
| 5 | +<table class="kt_collection narrow" cellspacing="0"> | |
| 6 | + <thead> | |
| 7 | + <th>{i18n}State{/i18n}</th> | |
| 8 | + <th>{i18n}Edit{/i18n}</th> | |
| 9 | + <th>{i18n}Existing Notifications{/i18n}</th> | |
| 10 | + </thead> | |
| 11 | + | |
| 12 | + <tbody> | |
| 13 | + {foreach from=$states item=oState} | |
| 14 | + {assign value=$oState->getId() var=state_id} | |
| 15 | + <tr> | |
| 16 | + <td>{$oState->getName()}</td> | |
| 17 | + <td class="centered"><a href="{addQS context=$context}action=editnotifications&fStateId={$state_id}{/addQS}" class="ktAction ktEdit"></a></td> | |
| 18 | + <td><span class="descriptiveText">{$context->describeStateNotifications($oState)}</span></td> | |
| 19 | + </tr> | |
| 20 | + {/foreach} | |
| 21 | + </tbody> | |
| 22 | +</table> | |
| 23 | + | ... | ... |