<?php
/* @var $this AlbumArticleRelationController */
/* @var $data AlbumArticleRelation */
?>

<div class="view">

	<b><?php echo CHtml::encode($data->getAttributeLabel('id')); ?>:</b>
	<?php echo CHtml::link(CHtml::encode($data->id), array('view', 'id'=>$data->id)); ?>
	<br />

	<b><?php echo CHtml::encode($data->getAttributeLabel('albumName')); ?>:</b>
	<?php echo CHtml::encode($data->albumName); ?>
	<br />

	<b><?php echo CHtml::encode($data->getAttributeLabel('articleName')); ?>:</b>
	<?php echo CHtml::encode($data->articleName); ?>
	<br />


</div>