<?php $this->extend('block_unsearchable'); ?>

<?php $this->block('content'); ?>

<h3>Details zu Ihrer Bestellung</h3>
<p class="messagebox confirm message"><?= sprintf($GLOBALS['TL_LANG']['MSC']['order_confirmation_message'],$this->collection->document_number, $this->date, $this->time); ?></p>

<div class="info_containers">
<?php foreach ($this->info as $type => $data): ?>
<div class="info_container <?php echo $type . ' ' . $data['class']; ?>">
    <h4><?php echo $data['headline']; ?></h4>
    <div class="info"><?php echo $data['info']; ?></div>
</div>
<?php endforeach; ?>
</div>

<?php echo $this->products; ?>

<?php $this->endblock(); ?>