<div class="panelHeader">
	<h3>Enter VideoID's</h3>
</div>
<div class="panelContent" style="padding: 1em;">
	<?php if ($this->no_cmsa) : ?>
		<h4>No CMS Account was selected to batch claim on behalf of.</h4>
	<?php endif; ?>	
	<?php if (count($this->invalid_video_ids) > 0) : ?>
		<h4>These didn't look like Video ID's and weren't added:</h4>
		<?php foreach ($this->invalid_video_ids as $video_id) : ?>
			<pre>
				<?php print($video_id); ?>
			</pre>
		<?php endforeach; ?>
	<?php endif; ?>	
	
	<?php if (count($this->already_added_video_ids) > 0) : ?>
		<h4>These are duplicates and were added recently:</h4>
		<?php foreach ($this->already_added_video_ids as $video_id) : ?>
			<pre>
				<?php print($video_id); ?>
			</pre>
		<?php endforeach; ?>
	<?php endif; ?>		

	<?php if (count($this->valid_video_ids) > 0 AND !$this->no_cmsa) : ?>	
		<h4>These were successfully inserted and will be picked up by BACON for analysis and claiming</h4>
		<?php foreach ($this->valid_video_ids as $video_id) : ?>
			<pre>
				<?php print($video_id); ?>
			</pre>
		<?php endforeach; ?>
	<?php endif; ?>
</div>	