Index: /controller/wpsg_ProduktController.class.php
===================================================================
--- /controller/wpsg_ProduktController.class.php	(revision 6658)
+++ /controller/wpsg_ProduktController.class.php	(revision 6659)
@@ -131,4 +131,13 @@
 			
 				die($this->imagehandler->getProductListBackend($_REQUEST['edit_id']));
+				
+			}
+			else if ($_REQUEST['cmd'] == 'ratingDel')
+			{
+				
+				wp_delete_comment($_REQUEST['c_id'], true);
+				
+				//'content' => $this->shop->render(WPSG_PATH_VIEW.'/produkt/addedit_rating.phtml', false)  
+				//$ret = $this->shop->render(WPSG_PATH_VIEW.'/produkt/addedit_rating.phtml');
 				
 			}
@@ -600,5 +609,5 @@
 			}
 			else
-			{ 
+			{
 				
 				$this->shop->view['data'] = $this->db->fetchRow("
@@ -682,4 +691,15 @@
 				'title' => __('Texte', 'wpsg'),
 				'content' => $this->shop->render(WPSG_PATH_VIEW.'/produkt/addedit_texte.phtml', false)				
+			);
+			
+			$this->shop->view['arCom'] = $this->db->fetchAssoc("SELECT C.`comment_ID`, C.`comment_author`, C.`comment_date`, C.`comment_content`, M.`meta_value`, P.`wpsg_produkt_id` FROM `".$GLOBALS['wpdb']->prefix."comments` AS C
+					LEFT JOIN ".$GLOBALS['wpdb']->prefix."commentmeta AS M ON C.`comment_ID`=M.`comment_id`
+					LEFT JOIN ".$GLOBALS['wpdb']->prefix."posts AS P ON C.`comment_post_ID`=P.`ID`
+					WHERE C.`comment_type`='wpsg_product_comment' AND P.`wpsg_produkt_id`='".wpsg_q($_REQUEST['edit_id'])."'
+					ORDER BY C.`comment_date` DESC");
+			
+			$this->shop->view['arSubAction']['tabrating'] = array(
+					'title' => __('Bewertungen', 'wpsg'),
+					'content' => $this->shop->render(WPSG_PATH_VIEW.'/produkt/addedit_rating.phtml', false)
 			);
 			
Index: /controller/wpsg_ShopController.class.php
===================================================================
--- /controller/wpsg_ShopController.class.php	(revision 6658)
+++ /controller/wpsg_ShopController.class.php	(revision 6659)
@@ -716,4 +716,8 @@
 				wp_enqueue_media();
 
+				// Font AweSome
+				wp_enqueue_style('wpsg_fa', $GLOBALS['wpsg_sc']->getRessourceURL('js/font-awesome-4.5.0/css/font-awesome.min.css'));
+				
+				
 			}
 			else if (!is_admin())
Index: /views/css/admin.css
===================================================================
--- /views/css/admin.css	(revision 6658)
+++ /views/css/admin.css	(revision 6659)
@@ -193,4 +193,20 @@
 .wpsg_productview_backend-available { color:#7ad03a; font-weight:700; float:left; margin-right:5px; }
 
+/* Bewertung */
+.wpsg_rating { background-color:#29556E; }
+.sto_comment_form .comment_list, 
+.sto_comment_form .comment_form { width:55rem; }
+.wpsg_comment_form .comment { background-color:#ececec; padding:20px; margin-bottom:30px; }
+.wpsg_comment_form .wpsg_star_wrap { float:right; }
+.wpsg_comment_form .wpsg_bewertung_comment_name { font-weight:bold; color:#29556e; text-transform:uppercase; float:left; }
+.wpsg_comment_form .wpsg_bewertung_comment_date { padding:20px 0px; color:#29556e; }
+.wpsg_comment_form .wpsg_bewertung_comment_text { color:#29556e; }
+.wpsg_comment_form .row { margin-left:0px !important; }
+.wpsg_star_wrap { font-size:15px; font-weight:normal; margin-bottom:5px; }
+.wpsg_star_wrap .fa { margin-right:5px; }
+.wpsg_star_wrap { color:#F8E71C; text-shadow:-1px 0 #F6B03A, 0 1px #F6B03A, 1px 0 #F6B03A, 0 -1px #F6B03A; }
+.wpsg_star_wrap .fa-star-active { color:#C8C8C8; text-shadow:-1px 0 #9B9B9B, 0 1px #9B9B9B, 1px 0 #9B9B9B, 0 -1px #9B9B9B; }
+.wpsg_comment_form .wpsg_star_wrap { float:right; }
+
 /* Bestellverwaltung */
 .wpsg_order .wpsg_status_link_wrap { min-height:50px; float:left; display:inline-block; }
Index: /views/js/font-awesome-4.5.0/HELP-US-OUT.txt
===================================================================
--- /views/js/font-awesome-4.5.0/HELP-US-OUT.txt	(revision 6659)
+++ /views/js/font-awesome-4.5.0/HELP-US-OUT.txt	(revision 6659)
@@ -0,0 +1,7 @@
+I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project,
+Fonticons (https://fonticons.com). It makes it easy to put the perfect icons on your website. Choose from our awesome,
+comprehensive icon sets or copy and paste your own.
+
+Please. Check it out.
+
+-Dave Gandy
Index: /views/produkt/addedit_rating.phtml
===================================================================
--- /views/produkt/addedit_rating.phtml	(revision 6659)
+++ /views/produkt/addedit_rating.phtml	(revision 6659)
@@ -0,0 +1,104 @@
+<?php
+
+	/**
+	 * Template fÃŒr die Integration der Produktbewertung in die Produktverwaltung
+	 */
+
+?>
+
+<div id="wpsg_be_rating">
+<?php echo wpsg_drawForm_AdminboxStart(__('Produktbewertung', 'wpsg')); ?>
+
+
+	<div class="row">
+		<div class="col-sm-12">
+
+		<?php if (wpsg_isSizedArray($this->view['arCom'])) { ?>
+
+			<div class="row">
+				<div class="wpsg_comment_form col-sm-12">
+			
+
+				    <?php foreach ($this->view['arCom'] as $com) { ?>
+				     
+				     	<div class="row" id ="wpsg_rating_<?php echo __($com['comment_ID'], 'wpsg'); ?>">
+				     	
+					        <div class="comment col-sm-11">
+					            
+					            <div class="wpsg_bewertung_comment_name">
+					           	 	
+					           	 	<?php echo __($com['comment_author'], 'wpsg'); ?>
+					            
+					            </div>
+					            <div class="wpsg_star_wrap" style="display:inline-block;">
+						            <?php
+						            $cnt = $com['meta_value'];
+						            for ($i = 0; $i < $cnt; $i++)
+						            	echo '<i class="fa fa-star"></i>';
+						            ?>
+					            </div>
+					            <br />
+
+								<?php //setlocale(LC_TIME, "de_DE.UTF-8"); ?>					            
+					            <?php //date_default_timezone_set('Europe/Berlin'); ?>					            
+					            <div class="wpsg_bewertung_comment_date">
+					            
+					            	<?php echo '<div>'.date_i18n('d.F Y', strtotime($com['comment_date'])); ?>
+									<?php /* echo strftime('%d.%B %Y', strtotime($oWP_Comment->comment_date)); */ ?>
+					            
+					          	</div>	
+					          
+					          	<div class="wpsg_bewertung_comment_text">
+					          		
+						            <?php echo '</div><br />'; ?>
+						            <?php echo __($com['comment_content'], 'sto'); ?>
+						            <?php echo '<br />'; ?>
+					          	
+					          	</div>
+					        </div>
+							<div class="wpsg_comment_form col-sm-1">
+								<a href="#" class="wpsg-glyphlink-td" title="<?php echo __('Bewertung lÃ¶schen', 'wpsg'); ?>" onclick="return wpsg_removeRating(<?php echo $com['comment_ID']; ?>);"><span class="glyphicon glyphicon-trash"></span></a>
+								  
+							</div>
+					        
+				     	</div> 
+				        
+				    <?php } ?>
+
+				</div>
+			</div>
+
+		<?php } else { ?>
+			<?php echo __('Keine Bewertungen vorhanden'); ?>
+		<?php } ?>
+		</div>
+	</div>
+
+	
+<?php echo wpsg_drawForm_AdminboxEnd(); ?>
+</div>
+
+<script type="text/javascript">/* <![CDATA[ */
+
+/**
+ * Wird aufgerufen wenn eine Bewertung gelÃ¶scht werden soll
+ */
+function wpsg_removeRating(c_id)
+{
+
+	if (!confirm('<?php echo __('Sind Sie sich sicher, dass Sie diese Bewertung lÃ¶schen mÃ¶chten?', 'wpsg'); ?>')) return false;
+
+	//jQuery('#wpsg_be_rating').html('<img src="<?php echo WPSG_URL; ?>views/gfx/ajax-loader.gif" alt="<?php echo __('Bitte warten ...', 'wpsg'); ?>" />');
+	jQuery('#wpsg_rating_'+c_id).html('<img src="<?php echo WPSG_URL; ?>views/gfx/ajax-loader.gif" alt="<?php echo __('Bitte warten ...', 'wpsg'); ?>" />');
+
+	jQuery.ajax( {
+		url: '<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Produkt&action=ajax&cmd=ratingDel&noheader=1&c_id=' + c_id,
+		success: function(data) {
+			//jQuery('#wpsg_be_rating').replaceWith(data);
+			jQuery('#wpsg_rating_'+c_id).hide();
+		}
+	} );
+
+	return false;
+}
+/* ]]> */</script>
