Subversion Repositories wpShopGermany4

Rev

Rev 5261 | Rev 6726 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5261 Rev 6330
Line 3... Line 3...
3
	/**
3
	/**
4
	 * Template für die Anzeige des Produktgewichts im Warenkorb
4
	 * Template für die Anzeige des Produktgewichts im Warenkorb
5
	 */
5
	 */
6
	//wpsg_debug($this->view);
6
	//wpsg_debug($this->view);
7
?>
7
?>
-
 
8
<div class="product_info">
-
 
9
	<div 
8
<tr class="wpsg_<?php echo (($this->view['i'] % 2 == 0)?'odd':'even'); ?>">	
10
	<?php if ($this->view['$bPicture'] == true) { ?>class="titlep"><?php } else { ?>class="title"><?php } ?>
9
	<td colspan="1"><?php echo __('Gewicht', 'wpsg'); ?>:</td>
11
		<?php echo __("Gewicht", "wpsg"); ?>
-
 
12
	</div>
10
	<td class="wpsg_cell_weight_value" colspan="<?php echo ((sizeof($this->view['basket']['mwst']) > 1 || $this->get_option('wpsg_showMwstAlways') == '1')?'3':'2'); ?>">
13
	<div class="valuer">
11
		<?php echo wpsg_ff($this->view['weight'], $this->get_option('wpsg_mod_weight_unit')); ?>	
14
		<?php echo wpsg_ff($this->view['weight'], $this->get_option('wpsg_mod_weight_unit')); ?>	
12
	</td>
-
 
13
</tr>
-
 
14
15
	</div>
-
 
16
	<div class="dummyr">
-
 
17
		<?php echo __('&nbsp;'); ?>
-
 
18
	</div>
-
 
19
	
-
 
20
</div>
-
 
21
15
22