?>
</a>
	        </div>
	        <div class="crossword-meta">
	            <span class="meta-category"><a href="<?php 
        echo $chref;
        ?>
"><?php 
        echo $this->escape($crossword->category);
        ?>
</a></span>
	            <span class="meta-user"><?php 
        echo JText::_('TXT_BY');
        ?>
&nbsp;<?php 
        echo CrosswordsHelper::getUserProfileUrl($crossword->created_by, $crossword->username);
        ?>
</span>
	            <span class="meta-date"><?php 
        echo $crossword_date;
        ?>
</span>
	            <span class="meta-users"><?php 
        echo $crossword->solved . ' ' . JText::_('LBL_PEOPLE_SOLVED');
        ?>
</span>
	        </div>
	        <div class="clear"></div>
		</li>
		<?php 
        $i = 1 - $i;
</th></tr></thead>
			    		<tbody>
						<?php 
    if ($this->crossword->users_solved) {
        ?>
							<?php 
        foreach ($this->crossword->users_solved as $user_solved) {
            ?>
							<tr>
								<td nowrap="nowrap">
									<div style="float: left; margin-right: 5px;"><?php 
            echo CrosswordsHelper::getUserAvatar($user_solved->created_by, 32);
            ?>
</div>
									<div><?php 
            echo CrosswordsHelper::getUserProfileUrl($user_solved->created_by, $this->escape($user_solved->username));
            ?>
</div>
									<div><?php 
            echo CrosswordsHelper::getFormattedDate($user_solved->created);
            ?>
</div>
									<div class="clear"></div>
								</td>
							</tr>
							<?php 
        }
        ?>
							<?php 
        if ($this->crossword->user_count > 0) {
            ?>