1*f2f5b3feSghi<h1><?php echo $bezlang['8d_report'] ?></h1> 2*f2f5b3feSghi 3*f2f5b3feSghi<table> 4*f2f5b3feSghi<tr> 5*f2f5b3feSghi <td> 6*f2f5b3feSghi <?php echo ucfirst($template['issue']['type']) ?> 7*f2f5b3feSghi <strong>#<?php echo $template['issue']['id'] ?></strong> 8*f2f5b3feSghi </td> 9*f2f5b3feSghi <td> 10*f2f5b3feSghi <strong><?php echo $bezlang['entity'] ?>:</strong> 11*f2f5b3feSghi <?php echo $template['issue']['entity'] ?> 12*f2f5b3feSghi </td> 13*f2f5b3feSghi </tr> 14*f2f5b3feSghi 15*f2f5b3feSghi <tr> 16*f2f5b3feSghi <td> 17*f2f5b3feSghi <strong><?php echo $bezlang['open_date'] ?>:</strong> 18*f2f5b3feSghi <?php echo $helper->time2date($template['issue']['date']) ?> 19*f2f5b3feSghi </td> 20*f2f5b3feSghi <td> 21*f2f5b3feSghi <strong><?php echo $bezlang['reporter'] ?>:</strong> 22*f2f5b3feSghi <?php echo $template['issue']['reporter'] ?> 23*f2f5b3feSghi </td> 24*f2f5b3feSghi </tr> 25*f2f5b3feSghi 26*f2f5b3feSghi <tr> 27*f2f5b3feSghi <td colspan="2"> 28*f2f5b3feSghi <strong><?php echo $bezlang['title'] ?>:</strong> 29*f2f5b3feSghi <?php echo $template['issue']['title'] ?> 30*f2f5b3feSghi </td> 31*f2f5b3feSghi</tr> 32*f2f5b3feSghi</table> 33*f2f5b3feSghi 34*f2f5b3feSghi<h2><?php echo $bezlang['2d'] ?></h2> 35*f2f5b3feSghi<?php echo $helper->wiki_parse($template['issue']['description']) ?> 36*f2f5b3feSghi 37*f2f5b3feSghi<?php if (count($template['causes']) > 0): ?> 38*f2f5b3feSghi <h2><?php echo $bezlang['3d'] ?></h2> 39*f2f5b3feSghi 40*f2f5b3feSghi <?php foreach ($template['causes'] as $rootcause => $cause): ?> 41*f2f5b3feSghi <h3><?php echo $rootcause ?></h3> 42*f2f5b3feSghi <ul> 43*f2f5b3feSghi <?php foreach($cause as $value): ?> 44*f2f5b3feSghi <li><?php echo $helper->wiki_parse($value['cause']) ?></li> 45*f2f5b3feSghi <?php endforeach ?> 46*f2f5b3feSghi </ul> 47*f2f5b3feSghi <?php endforeach ?> 48*f2f5b3feSghi<?php endif ?> 49*f2f5b3feSghi 50*f2f5b3feSghi<?php if (count($template['tasks']) > 0): ?> 51*f2f5b3feSghi <?php foreach($template['tasks'] as $nd => $tasks): ?> 52*f2f5b3feSghi <h2><?php echo $bezlang[$nd] ?></h2> 53*f2f5b3feSghi <table> 54*f2f5b3feSghi <tr> 55*f2f5b3feSghi <th><?php echo $bezlang['id'] ?></th> 56*f2f5b3feSghi <th><?php echo $bezlang['class'] ?></th> 57*f2f5b3feSghi <th><?php echo $bezlang['date'] ?></th> 58*f2f5b3feSghi <th><?php echo $bezlang['cost'] ?></th> 59*f2f5b3feSghi </tr> 60*f2f5b3feSghi <?php foreach($tasks as $task): ?> 61*f2f5b3feSghi <tr> 62*f2f5b3feSghi <td><?php echo $helper->html_task_link($task['issue'], $task['id']) ?></td> 63*f2f5b3feSghi <td><?php echo $task['action'] ?></td> 64*f2f5b3feSghi <td><?php echo $helper->string_time_to_now($task['date']) ?></td> 65*f2f5b3feSghi <td> 66*f2f5b3feSghi <?php if ($task['cost'] == ''): ?> 67*f2f5b3feSghi <em><?php echo $bezlang['ns'] ?></em> 68*f2f5b3feSghi <?php else: ?> 69*f2f5b3feSghi <?php echo $task['cost'] ?> 70*f2f5b3feSghi <?php endif ?> 71*f2f5b3feSghi </td> 72*f2f5b3feSghi </tr> 73*f2f5b3feSghi <?php endforeach ?> 74*f2f5b3feSghi </table> 75*f2f5b3feSghi <?php endforeach ?> 76*f2f5b3feSghi<?php endif ?> 77*f2f5b3feSghi 78*f2f5b3feSghi 79*f2f5b3feSghi 80*f2f5b3feSghi<?php if (strlen(trim($template['issue']['opinion'])) > 0): ?> 81*f2f5b3feSghi <h2><?php echo $bezlang['7d'] ?></h2> 82*f2f5b3feSghi <?php echo $helper->wiki_parse($template['issue']['opinion']) ?> 83*f2f5b3feSghi 84*f2f5b3feSghi<?php endif ?> 85*f2f5b3feSghi 86*f2f5b3feSghi<h2><?php echo $bezlang['8d'] ?></h2> 87*f2f5b3feSghi<table> 88*f2f5b3feSghi<tr> 89*f2f5b3feSghi <td> 90*f2f5b3feSghi <strong><?php echo $bezlang['true_date'] ?>:</strong> 91*f2f5b3feSghi <?php echo $helper->time2date($template['issue']['last_mod']) ?> 92*f2f5b3feSghi </td> 93*f2f5b3feSghi <td> 94*f2f5b3feSghi <strong><?php echo $bezlang['state'] ?>:</strong> 95*f2f5b3feSghi <?php echo $template['issue']['state'] ?> 96*f2f5b3feSghi </td> 97*f2f5b3feSghi</tr> 98*f2f5b3feSghi 99*f2f5b3feSghi<tr> 100*f2f5b3feSghi <td> 101*f2f5b3feSghi <strong><?php echo $bezlang['cost_total'] ?>:</strong> 102*f2f5b3feSghi <?php echo $template['cost_total'] ?> 103*f2f5b3feSghi </td> 104*f2f5b3feSghi <td> 105*f2f5b3feSghi <strong><?php echo $bezlang['coordinator'] ?>:</strong> 106*f2f5b3feSghi <?php echo $template['issue']['coordinator'] ?> 107*f2f5b3feSghi </td> 108*f2f5b3feSghi</tr> 109*f2f5b3feSghi</table> 110