blob: 4468a467607dc5c4699a77acc615cd046de26838 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
<?php
/**
* @var StgteilVersion $stgversion
*/
?>
<html lang="de" xmlns:o='urn:schemas-microsoft-com:office:office' xmlns:w='urn:schemas-microsoft-com:office:word' xmlns='http://www.w3.org/TR/REC-html40'>
<head>
<meta charset="UTF-8">
<title><?= htmlReady($stgversion->getDisplayName()) ?></title>
<!--[if gte mso 9]>
<xml>
<w:WordDocument>
<w:View>Print</w:View>
<w:Zoom>90</w:Zoom>
<w:DoNotOptimizeForBrowser/>
</w:WordDocument>
</xml>
<![endif]-->
<style>
body {
font-size: 10pt;
}
body, h1, h2, h3, h4, h5 {
font-family: Arial, Sans Serif;
}
div.Section1 {
page: Section1;
font: italic 10pt arial, sans-serif;
}
table.mvv-modul-details {
border: 1px solid black;
border-collapse: collapse;
font: 8pt arial, sans-serif;
-webkit-hyphens: auto;
hyphens: auto;
width: 100%;
}
table.mvv-modul-details td, table.mvv-modul-details th {
border: 1px solid black;
-webkit-hyphens: auto;
hyphens: auto;
}
table.mvv-modul-details tbody th {
text-align: left;
-webkit-hyphens: auto;
hyphens: auto;
}
</style>
<?= Assets::stylesheet('print') ?>
</head>
<body>
<div>
<?
echo $this->render_partial('shared/version/_version', ['version' => $stgversion]);
echo $this->render_partial('shared/version/_versionmodule', ['version' => $stgversion]);
?>
</div>
</body>
</html>
|