1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,19 @@ |
1 |
+<?php $this->extend('block_unsearchable'); ?> |
|
2 |
+ |
|
3 |
+<?php $this->block('content'); ?> |
|
4 |
+ |
|
5 |
+<h3>Details zu Ihrer Bestellung</h3> |
|
6 |
+<p class="messagebox confirm message"><?= sprintf($GLOBALS['TL_LANG']['MSC']['order_confirmation_message'],$this->collection->document_number, $this->date, $this->time); ?></p> |
|
7 |
+ |
|
8 |
+<div class="info_containers"> |
|
9 |
+<?php foreach ($this->info as $type => $data): ?> |
|
10 |
+<div class="info_container <?php echo $type . ' ' . $data['class']; ?>"> |
|
11 |
+ <h4><?php echo $data['headline']; ?></h4> |
|
12 |
+ <div class="info"><?php echo $data['info']; ?></div> |
|
13 |
+</div> |
|
14 |
+<?php endforeach; ?> |
|
15 |
+</div> |
|
16 |
+ |
|
17 |
+<?php echo $this->products; ?> |
|
18 |
+ |
|
19 |
+<?php $this->endblock(); ?> |