diff --git a/templates/tickets/ticketanlegen.tpl b/templates/tickets/ticketanlegen.tpl new file mode 100644 --- /dev/null +++ b/templates/tickets/ticketanlegen.tpl @@ -0,0 +1,53 @@ +
+ Betreff + +
+ Nachricht + {$currentTicket->getMessage()} +
+ Status + + {foreach $statusItems as $status} + {if $status->getId() == $currentTicket->getStatus_Id()} + {$status->getName()} + {else} + {$status->getName()} + {/if} + {/foreach} + +
+ Bearbeiter + + {foreach $users as $user} + {if $user->getId() == $currentTicket->getUser_Id()} + {$tUser->getFormattedUsername($user->getId())} + {else} + {$tUser->getFormattedUsername($user->getId())} + {/if} + {/foreach} + +
+ + +