<form action="<?php echo $this->action; ?>" id="<?php echo $this->formId; ?>" name="iso<?php echo rand(); ?>" method="post" enctype="<?php echo $this->enctype; ?>">
<input type="hidden" name="FORM_SUBMIT" value="<?php echo $this->formSubmit; ?>">
<input type="hidden" name="REQUEST_TOKEN" value="{{request_token}}">
<input type="hidden" name="AJAX_PRODUCT" value="<?php echo $this->product_id; ?>">
<input type="hidden" name="AJAX_MODULE" value="<?php echo $this->module_id; ?>">
<div class="col-md-5 col-sm-12">
<div class="service-box">
<div class="service-thumb">
<?php echo $this->getGallery('images')->generateMainImage(); ?>
<div class="space20"></div>
<div class="product-thumbnails">
<?php echo $this->getGallery('images')->generateGallery(); ?>
</div>
</div>
</div>
</div>
<div class="col-md-7 col-sm-12">
<h2><?php echo $this->generateAttribute('name'); ?> verstehen</h2>
<div class="border-width"></div>
<div class="product-parameter-infos">
<ul class="list-unstyled">
<li><span>Magazin Nr.: </span><?= $this->sku; ?></li>
<li><span>ISBN: </span><?= $this->isbn_nummer; ?></li>
<li><span>Erscheinungsjahr: </span> <?= $this->erscheinungsjahr; ?></li>
<li><span>Redaktion: </span> <?= $this->redaktion; ?></li>
</ul>
</div>
<div class="articleTeaser"><?php echo $this->generateAttribute('teaser'); ?></div>
<?php if($this->hasOptions): ?>
<div class="options">
<?php foreach( $this->options as $arrOption ): echo $arrOption['html']; endforeach; ?>
</div>
<?php endif; ?>
<?php if($this->buttons): ?>
<div class="submit_container">
<?php if ($this->useQuantity): ?>
<div class="form-group quantity_container">
<label for="quantity_requested_<?php echo $this->raw['id']; ?>"><?php echo $GLOBALS['TL_LANG']['MSC']['quantity']; ?>:</label>
<input type="text" class="form-control text" id="quantity_requested_<?php echo $this->raw['id']; ?>" name="quantity_requested" placeholder="<?php echo $this->minimum_quantity; ?>" maxlength="10">
</div>
<?php endif; ?>
<?php foreach( $this->buttons as $name => $button ): ?>
<div class="row">
<div class="col-md-6">
<div class="offer" itemscope itemtype="http://schema.org/Offer">
<div class="price" itemprop="price"><?php echo $this->generatePrice(); ?></div>
<?php if($this->baseprice): ?>
<div class="baseprice"><?php echo $this->generateAttribute('baseprice'); ?></div>
<?php endif; ?>
</div>
</div>
<div class="col-md-6">
<input type="submit" class="submit btn btn-xl btn-skin margin-b-20 <?php echo $name; ?> <?= $button['class'] ?>" name="<?php echo $name; ?>" value="<?php echo $button['label']; ?>">
</div>
</div>
<?php endforeach; ?>
</div>
<?php endif; ?>
</div>
<div class="row editorial-content">
<div class="col-sm-12">
<?php if ($this->sku): ?>
<?php endif; if ($this->description): ?>
<div class="description" itemprop="description">
<?php echo $this->generateAttribute('description'); ?>
</div>
<?php endif; ?>
</div>
</div>
</form>