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    w problemie
22    <a href="<?php echo $tpl->url('thread', 'id', $tpl->get('thread')->id) ?>">
23        #<?php echo $tpl->get('thread')->id ?>
24    </a>.
25</p>
26
27<div style="border: 1px solid <?php echo $tpl->get('action_border_color', '#E5E5E5') ?>; background-color: <?php echo $tpl->get('action_background_color', 'transparent') ?>;">
28    <div style="margin: 5px;">
29        <div style="margin: 5px 0;">
30            <strong><?php echo $tpl->user_name($tpl->get('who')) ?></strong> <br>
31            <span style="color: #888"><?php echo $tpl->date($tpl->get('when')) ?></span>
32        </div>
33        <?php echo $tpl->get('content') ?>
34    </div>
35    <div style="margin-top: 5px; padding: 20px; background: #F2F2F2;">
36        <a href="<?php echo $tpl->url('thread', 'id', $tpl->get('thread')->id) ?>#k_" style="text-decoration: none; color: #444; font-weight: bold;">Dodaj komentarz</a>
37    </div>
38</div>
39
40<p style="font-size:small;color:#666;">&mdash;<br />
41    Otrzymujesz tą wiadomość, ponieważ jesteś subskrybentem tego problemu.<br />
42    <a href="<?php echo $tpl->url('thread', 'id', $tpl->get('thread')->id) ?>">Przejdź do problemu</a>,
43    albo <a href="<?php echo $tpl->url('thread', 'id', $tpl->get('thread')->id, 'action', 'unsubscribe') ?>">
44        wyłącz subskrypcję
45    </a>.
46</p>
47
48<?php include "footer.php" ?>
49
50</body>
51</html>