1<?php /* @var \dokuwiki\plugin\bez\meta\Tpl $tpl */ ?>
2<html>
3<head>
4    <title><?php echo $tpl->get('wiki_title') ?></title>
5    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
6</head>
7<style type="text/css">
8    body {
9        font: normal 87.5%/1.4 Arial, sans-serif;
10    }
11    <?php echo $tpl->get('style') ?>
12</style>
13<body>
14
15<h1 style="padding-bottom: 5px; margin-bottom: 5px; border-bottom: 1px solid #E5E5E5;">
16    <?php echo $tpl->get('wiki_title') ?>
17</h1>
18
19<p>
20    <?php echo $tpl->user_name($tpl->get('who')) ?> <?php echo $tpl->getLang($tpl->get('action')) ?>
21    <a href="<?php echo $tpl->url('task', 'tid', $tpl->get('task')->id) ?>">
22        #z<?php echo $tpl->get('task')->id ?>
23    </a>.
24</p>
25
26<div style="border: 1px solid <?php echo $tpl->get('action_border_color', '#E5E5E5') ?>; background-color: <?php echo $tpl->get('action_background_color', 'transparent') ?>;">
27    <div style="margin: 5px;">
28        <div style="margin: 5px 0;">
29            <strong><?php echo $tpl->user_name($tpl->get('who')) ?></strong> <br>
30            <span style="color: #888"><?php echo $tpl->date($tpl->get('when')) ?></span>
31        </div>
32        <?php echo $tpl->get('content') ?>
33    </div>
34    <div style="margin-top: 5px; padding: 20px; background: #F2F2F2;">
35        <a href="<?php $tpl->url('task', 'tid', $tpl->get('task')->id) ?>#k_" style="text-decoration: none; color: #444; font-weight: bold;">Dodaj komentarz</a>
36    </div>
37</div>
38
39<p style="font-size:small;color:#666;">&mdash;<br />
40    Otrzymujesz tą wiadomość, ponieważ jesteś subskrybentem tego problemu.<br />
41    <a href="<?php echo $tpl->url('thread', 'id', $tpl->get('thread')->id) ?>">Przejdź do problemu</a>,
42    albo <a href="<?php echo $tpl->url('thread', 'id', $tpl->get('thread')->id, 'action', 'unsubscribe') ?>">
43        wyłącz subskrypcję
44    </a>.
45</p>
46
47<?php include "footer.php" ?>
48
49</body>
50</html>