mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 12:51:58 +01:00
25 lines
1.0 KiB
Smarty
25 lines
1.0 KiB
Smarty
<html>
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="/view/theme/default/stylesheet/style-<?php print THEME; ?>.css" />
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="messagepopup">
|
|
|
|
<p>
|
|
<a class="messagelink" href="index.php?route=message/download&id=<?php print $id; ?>"><i class="icon-download"></i> <?php print $text_download_message; ?></a> |
|
|
<a class="messagelink" href="#" onclick="Piler.view_message(<?php print $id; ?>);"><i class="icon-envelope"></i> <?php print $text_view_message; ?></a> |
|
|
<a class="messagelink" href="#" onclick="Piler.view_headers(<?php print $id; ?>);"><i class="icon-envelope"></i> <?php print $text_view_headers; ?></a>
|
|
<?php if($message['has_journal'] == 1 && Registry::get('auditor_user') == 1 && SHOW_ENVELOPE_JOURNAL == 1) { ?>
|
|
| <a class="messagelink" href="#" onclick="Piler.view_journal(<?php print $id; ?>);"><i class="icon-envelope"></i> <?php print $text_view_journal_envelope; ?></a>
|
|
<?php } ?>
|
|
</p>
|
|
|
|
<p><?php print $data; ?></p>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|